- 26 Sep, 2018 4 commits
-
-
Tal Einat authored
-
Michael Lee authored
Currently, the docs state that when doing `Type[X]`, X is only allowed to be a class, a union of classes, and Any. This pull request amends that sentence to clarify X may also be a typevar (or a union involving classes, Any, and TypeVars).
-
Bjorn Andersson authored
The AF_QIPCRTR address family was introduced in Linux v4.7. Co-authored-by: Bjorn Andersson <bjorn.andersson@linaro.org>
-
INADA Naoki authored
When dict subclass overrides order (`__iter__()`, `keys()`, and `items()`), `dict(o)` should use it instead of dict ordering. https://bugs.python.org/issue34320
-
- 25 Sep, 2018 16 commits
-
-
Cheryl Sabella authored
-
Yury Selivanov authored
-
Zackery Spytz authored
* bpo-5950: Support reading zips with comments in zipimport
-
Yury Selivanov authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Victor Stinner authored
Fix test_socket.SendmsgSCTPStreamTest: catch ENOMEM error. testSendmsgTimeout() and testSendmsgDontWait() randomly fail on Travis CI with: "OSError: [Errno 12] Cannot allocate memory".
-
Victor Stinner authored
-
-
Tal Einat authored
-
Géry Ogam authored
-
Zackery Spytz authored
The GlobalLock() call in UpdateDropDescription() was not checked for failure. https://bugs.python.org/issue34770
-
Joni Kähärä authored
-
Terry Jan Reedy authored
-
- 24 Sep, 2018 11 commits
-
-
Terry Jan Reedy authored
-
Ammar Askar authored
Also point to start of tokens in parsing errors. Fixes bpo-34683
-
Christian Heimes authored
The xml.sax and xml.dom.domreg modules now obey sys.flags.ignore_environment. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue34791
-
Victor Stinner authored
Make sure that "./python script.py" does not crash if the script file doesn't exist.
-
-
Steve Dower authored
-
Steve Dower authored
-
Petr Viktorin authored
-
João Júnior authored
* Insert the warn in the asyncio.sleep when the loop argument is used * Insert the warn in the asyncio.wait and asyncio.wait_for when the loop argument is used * Better format of the code * Add news file * change calls for get_event_loop() to calls for get_running_loop() * Change message to be more clear in News * Improve the comments in test_tasks
-
Tim Hoffmann authored
-
Lisa Roach authored
-
- 23 Sep, 2018 6 commits
-
-
-
Serhiy Storchaka authored
-
Christian Heimes authored
The SAX parser no longer processes general external entities by default to increase security. Before, the parser created network connections to fetch remote files or loaded local files from the file system for DTD and entities. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue17239
-
Christian Heimes authored
Add SSLContext.post_handshake_auth and SSLSocket.verify_client_post_handshake for TLS 1.3 post-handshake authentication. Signed-off-by: Christian Heimes <christian@python.org>q https://bugs.python.org/issue34670
-
Serhiy Storchaka authored
Use "backslashreplace" instead of "unicode-escape". It is not implementation depended and escapes only non-encodable characters. Also simplify the code.
-
jChapman authored
News entry clean up, added to what's new Requested by @gvanrossum in https://github.com/python/cpython/pull/4509 https://bugs.python.org/issue32117
-
- 22 Sep, 2018 3 commits
-
-
Krzysztof Wroblewski authored
Also make docs for NEWFALSE and NEWTRUE more consistent with docs for other opcodes.
-
Nathaniel J. Smith authored
OpenSSL follows the convention that whenever you call a function, it returns an error indicator value; and if this value is negative, then you need to go look at the actual error code to see what happened. Commit c6fd1c1c introduced a small mistake in _ssl__SSLSocket_shutdown_impl: instead of checking whether the error indicator was negative, it started checking whether the actual error code was negative, and it turns out that the error codes are never negative. So the effect was that 'unwrap()' lost the ability to raise SSL errors. https://bugs.python.org/issue34759
-
-