[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-26 Thread Mathias Rav

Mathias Rav added the comment:

Sorry for making a typo in your last name, Ivan Levkivskyi! I should know 
better and use copy-and-paste.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29974>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-04 Thread Mathias Rav

Mathias Rav added the comment:

I have updated the patch after feedback from Jelle Zijlstra and Ivan 
Levkevskyi. Indeed the example was correct; the patch now adds wording from PEP 
484 and PEP 526 to clarify why a function parameter annotation needs to be in 
quotes and a local variable annotation does not.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29974>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29974] Change typing.TYPE_CHECKING doc example

2017-04-04 Thread Mathias Rav

Changes by Mathias Rav <mathias...@gmail.com>:


--
title: typing.TYPE_CHECKING doc example is incorrect -> Change 
typing.TYPE_CHECKING doc example

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29974>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29974] typing.TYPE_CHECKING doc example is incorrect

2017-04-03 Thread Mathias Rav

Changes by Mathias Rav <mathias...@gmail.com>:


--
pull_requests: +1155

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29974>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29974] typing.TYPE_CHECKING doc example is incorrect

2017-04-03 Thread Mathias Rav

New submission from Mathias Rav:

The documentation of typing.TYPE_CHECKING has an example (introduced in issue 
#26141) that would lead to NameError at runtime. The example shows how to limit 
the import of "expensive_mod" to type checkers, but then goes on to use 
"expensive_mod.some_type" in a type annotation that is evaluated at runtime 
("local_var: expensive_mod.some_type"). The use case of TYPE_CHECKING is 
probably meant for type annotations placed in comments, e.g. "local_var  # 
type: expensive_mod.some_type".

--
assignee: docs@python
components: Documentation
messages: 291085
nosy: docs@python, rav
priority: normal
severity: normal
status: open
title: typing.TYPE_CHECKING doc example is incorrect
type: enhancement
versions: Python 3.4, Python 3.5, Python 3.6, Python 3.7

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29974>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com