At the following link :
https://docs.python.org/fr/3/download.html
I can’t dnload french doc on python in pdf format, get error http 404 (not found)
I would appreciate very much to dnload the FRENCH docs
Thank you for help !
Yves
New submission from Colin Dunklau <colin.dunklau(a)gmail.com>:
I see that code making async/await real keywords has been merged, but it looks like Doc/reference/lexical_analysis.rst doesn't have those added
https://github.com/python/cpython/blob/4a2d00c/Doc/reference/lexical_analys…
Is that list autogenerated somehow or was it just overlooked?
----------
assignee: docs@python
components: Documentation
messages: 304583
nosy: Colin Dunklau, docs@python
priority: normal
severity: normal
status: open
title: async and await missing from keyword list in lexical analysis doc
type: enhancement
versions: Python 3.7
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue31811>
_______________________________________
New submission from Petr Viktorin:
The Py_UNUSED macro, which was added in Python 3.4, is not documented.
Is this an omission, or is it undocumented on purpose?
I can prepare a patch if it's the former.
The macro was added in: http://bugs.python.org/issue19976
and referenced in: http://bugs.python.org/issue26179
Usage on Github: https://github.com/search?q=py_unused&type=Code
----------
assignee: docs@python
components: Documentation
messages: 284821
nosy: docs@python, encukou
priority: normal
severity: normal
status: open
title: Py_UNUSED is not documented
versions: Python 3.4, Python 3.5, Python 3.6, Python 3.7
_______________________________________
Python tracker <report(a)bugs.python.org>
<http://bugs.python.org/issue29179>
_______________________________________
New submission from anatoly techtonik <techtonik(a)gmail.com>:
I've just noticed that my application is incompatible with Python 2.5, because ctypes.wintypes is missing SHORT constants. However, I can't find the information when these symbols were introduced first. To prevent such confusion in future it would be nice to extract symbol information for each Python release and automatically include the version of the first appearance in documentation.
----------
assignee: docs@python
components: Documentation
messages: 128893
nosy: docs@python, techtonik
priority: normal
severity: normal
status: open
title: autodocument first appearance of ctypes.wintypes constants
versions: Python 2.5, Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3
_______________________________________
Python tracker <report(a)bugs.python.org>
<http://bugs.python.org/issue11253>
_______________________________________
New submission from Mikey D <mdeguzis(a)gmail.com>:
https://docs.python.org/2/library/os.html
os.mkdirs('/tmp/folder')
AttributeError: 'module' object has no attribute 'mkdirs''
os.makedirs('/tmp/folder')
os.path.isdir('/tmp/folder')
True
----------
assignee: docs@python
components: Documentation
messages: 305826
nosy: Mikey D, docs@python
priority: normal
severity: normal
status: open
title: os.mkdirs does not exist on 2.7.5+
versions: Python 2.7
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue31981>
_______________________________________
R. David Murray <rdmurray(a)bitdance.com> added the comment:
Yes, that's the way it works (and is intended to work, for performance reasons). The documentation on this could be improved...while it does say globals must be a dict and that locals can be any mapping object, it does it in a sentence that is a bit confusing in this context, and it doesn't make it clear that it has to be a "real" dict, not a subclass. (I wouldn't be surprised if that sentence was written back when you couldn't subclass dict.)
----------
assignee: -> docs@python
components: +Documentation
nosy: +docs@python, r.david.murray
versions: +Python 3.7 -Python 3.5
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue31968>
_______________________________________