Change by Daisuke Miyakawa :
--
keywords: +patch
pull_requests: +3935
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue31567>
___
___
Py
New submission from Daisuke Miyakawa:
I can see inconsistency in library documentation around functions that are
suitable for decorators. I'd like to clarify if it is based on my
misunderstanding, or a real documentation problem.
Examples:
- https://docs.python.org/3/library/functions
New submission from Daisuke Miyakawa:
I was reading the following doc and got confused.
https://docs.python.org/3.7/reference/datamodel.html#object.__aenter__
According to the API doc itself (and original PEP 492), __aenter__() "is
semantically similar to the __enter__(), with only diffe
Changes by Daisuke Miyakawa :
--
versions: +Python 3.6
___
Python tracker
<http://bugs.python.org/issue28713>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Daisuke Miyakawa:
https://docs.python.org/3.5/tutorial/errors.html
for arg in sys.argv[1:]:
try:
f = open(arg, 'r')
except IOError:
print('cannot open', arg)
else:
print(arg, 'has', len(f.readline
New submission from Daisuke Miyakawa:
I'm trying to prepare an egg file "without source code".
I works mostly, while console_script does not.
Here's a sample project for it, in which the function
"greeting.greeting.greeting()" prints "Greeting!".
http
New submission from Daisuke Miyakawa:
Python 3.5.2 (and Python 2.7.12) uses Py_TPFLAGS_IS_ABSTRACT while PEP 3119
menttions "Py_TPFLAGS_ABSTRACT" for it. At some point had the name of the flag
been changed without modifying PEP?
--
assignee: docs@python
components: Doc