- 24 Eyl, 2018 9 kayıt (commit)
-
-
Christian Heimes yazdı
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 yazdı
Make sure that "./python script.py" does not crash if the script file doesn't exist.
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
Petr Viktorin yazdı
-
João Júnior yazdı
* 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 yazdı
-
Lisa Roach yazdı
-
- 23 Eyl, 2018 6 kayıt (commit)
-
-
-
Serhiy Storchaka yazdı
-
Christian Heimes yazdı
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 yazdı
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 yazdı
Use "backslashreplace" instead of "unicode-escape". It is not implementation depended and escapes only non-encodable characters. Also simplify the code.
-
jChapman yazdı
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 Eyl, 2018 6 kayıt (commit)
-
-
Krzysztof Wroblewski yazdı
Also make docs for NEWFALSE and NEWTRUE more consistent with docs for other opcodes.
-
Nathaniel J. Smith yazdı
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
-
-
Ethan Furman yazdı
* bpo-29577: allow multiple mixin classes
-
David Cuthbert yazdı
Iterable unpacking is now allowed without parentheses in yield and return statements, e.g. ``yield 1, 2, 3, *rest``. Thanks to David Cuthbert for the change and jChapman for added tests.
-
Elvis Pranskevichus yazdı
We cannot simply call locale.getpreferredencoding() here, as GDB might have been linked against a different version of Python with a different encoding and coercion policy with respect to PEP 538 and PEP 540. Thanks to Victor Stinner for a hint on how to fix this.
-
- 21 Eyl, 2018 9 kayıt (commit)
-
-
Brett Cannon yazdı
PowerShell Core 6.1 is the cross-platform port of Windows PowerShell. This change updates Activate.ps1 to not make Windows assumptions as well as installing it into the bin/Scripts directory on all operating systems. Requires PowerShell Core 6.1 for proper readline support once the shell has been activated for the virtual environment.
-
Yury Selivanov yazdı
-
Xiang Zhang yazdı
Make it more accurate and not limited to UNIX.
-
Yury Selivanov yazdı
-
Raymond Hettinger yazdı
-
Serhiy Storchaka yazdı
-
Zackery Spytz yazdı
There was a missing PyMem_Free(format) in time_strftime().
-
Benjamin Peterson yazdı
Reduce the knotty preprocessor conditional logic, dedent unnecessarily nested code, and handle errors properly. The first edition of this change (afde1c1a) failed (bpo-34715) because FreeBSD doesn't define the timezone globals. That's why we're now checking for HAVE_DECL_TZNAME.
-
Benjamin Peterson yazdı
-
- 20 Eyl, 2018 7 kayıt (commit)
-
-
Steve Dower yazdı
-
Berker Peksag yazdı
Apparently, FreeBSD doesn't raise OSError when offset is not a multiple of mmap.PAGESIZE.
-
Yury Selivanov yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Yury Selivanov yazdı
-
- 19 Eyl, 2018 3 kayıt (commit)
-
-
Steve Dower yazdı
-
Victor Stinner yazdı
* Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" This reverts commit dbdee007. * Revert "bpo-34589: C locale coercion off by default (GH-9073)" This reverts commit 7a0791b6. * Revert "bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)" This reverts commit 188ebfa4.
-
Steve Dower yazdı
-