- 10 Haz, 2018 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Seems they were added by double applying blurb.
-
Andrés Delfino yazdı
-
Andrés Delfino yazdı
-
- 09 Haz, 2018 7 kayıt (commit)
-
-
Ammar Askar yazdı
-
MarcoFalke yazdı
This is a fixup to 19a44f63
-
Ned Deily yazdı
-
Christian Tismer yazdı
During development of the limited API support for PySide, we saw an error in a macro that accessed a type field. This patch fixes the 7 errors in the Python headers. Macros which were not written as capitals were implemented as function. To do the necessary analysis again, a script was included that parses all headers and looks for "->tp_" in serctions which can be reached with active limited API. It is easily possible to call this script as a test. Error listing: ../../Include/objimpl.h:243 #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \ (Py_TYPE(o)->tp_is_gc == NULL || Py_TYPE(o)->tp_is_gc(o))) Action: commented only ../../Include/objimpl.h:362 #define PyType_SUPPORTS_WEAKREFS(t) ((t)->tp_weaklistoffset > 0) Action: commented only ../../Include/objimpl.h:364 #define PyObject_GET_WEAKREFS_LISTPTR(o) \ ((PyObject **) (((char *) (o)) + Py_TYPE(o)->tp_weaklistoffset)) Action: commented only ../../Include/pyerrors.h:143 #define PyExceptionClass_Name(x) \ ((char *)(((PyTypeObject*)(x))->tp_name)) Action: implemented function ../../Include/abstract.h:593 #define PyIter_Check(obj) \ ((obj)->ob_type->tp_iternext != NULL && \ (obj)->ob_type->tp_iternext != &_PyObject_NextNotImplemented) Action: implemented function ../../Include/abstract.h:713 #define PyIndex_Check(obj) \ ((obj)->ob_type->tp_as_number != NULL && \ (obj)->ob_type->tp_as_number->nb_index != NULL) Action: implemented function ../../Include/abstract.h:924 #define PySequence_ITEM(o, i)\ ( Py_TYPE(o)->tp_as_sequence->sq_item(o, i) ) Action: commented only
-
Zackery Spytz yazdı
_Py_IDENTIFIER(argv) is now unused.
-
Nick Coghlan yazdı
While locale coercion and UTF-8 mode turned out to be complementary ideas rather than competing ones, it isn't immediately obvious why it's useful to have both, or how they interact at runtime. This updates both the Python 3.7 What's New doc and the PYTHONCOERCECLOCALE and PYTHONUTF8 documentation in an attempt to clarify that relationship: - in the respective What's New sections, add a closing paragraph explaining which problem each one solves, and pointing to the other PEP's section for the specific aspects it relies on the other PEP to solve - use "locale-aware mode" as a more descriptive term for the default non-UTF-8 mode - improve wording conistenccy between the PYTHONCOERCECLOCALE and PYTHONUTF8 docs when they cover the same thing (mostly related to legacy locale detection and setting the standard stream error handler) - improve the description of the locale coercion trigger conditions (including pointing out that setting LC_ALL turns off locale coercion) - port the full description of the UTF-8 mode behaviour changes from PEP 540 into the PYTHONUTF8 documentation - be explicit that PYTHONIOENCODING still overrides the settings for the standard streams - mention concrete examples of things that do and don't get their text encoding assumptions adjusted by the two text encoding assumption override techniques
-
Andrés Delfino yazdı
-
- 08 Haz, 2018 23 kayıt (commit)
-
-
Alexander Belopolsky yazdı
Since implementation of bpo-25283, the objects returned by time.localtime always have tm_zone and tm_gmtoff attributes. Remove code that anticipates their absence.
-
Alexander Belopolsky yazdı
* Added a test case for strftime("%z"). The added test checks a case with UTC offest expressed in an integer number of seconds. * Added a test comparing naive and aware datetimes. Check that a greater than comparison of a naive datetime instance with an aware one raises a TypeError. * Test datetime in fold or in gap comparison both ways.
-
Yury Selivanov yazdı
Supersedes https://github.com/python/cpython/pull/2490
-
Andrés Delfino yazdı
-
Thomas Kluyver yazdı
More consistent with how other parts of Python find the filename (e.g. tracebacks and pdb).
-
Andrés Delfino yazdı
-
Dong-hee Na yazdı
-
Suriyaa ✌️️ yazdı
-
Elvis Pranskevichus yazdı
-
Andrés Delfino yazdı
-
Łukasz Langa yazdı
This solves a regression in logging config due to changes in BPO-23835.
-
wim glenn yazdı
- bugfix and test for fragile metavar handling in argparse (see bpo-24089, bpo-14046, bpo-25058, bpo-11874) - also fixes some incorrect tests that did not make 1-element tuples correctly
-
Victor Stinner yazdı
_feed_data_to_bufferred_proto() renamed to _feed_data_to_buffered_proto() ("bufferred" => "buffered"). Typo spotted by Nathaniel J. Smith.
-
Victor Stinner yazdı
If tests are re-run, use "xxx then yyy" result format (ex: "FAILURE then SUCCESS") to show that some failing tests have been re-run. Add also test_regrtest.test_rerun_fail() test.
-
Andrés Delfino yazdı
-
Terry Jan Reedy yazdı
-
Cheryl Sabella yazdı
-
Dong-hee Na yazdı
-
atg7000 yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
Victor Stinner yazdı
The test does crash on multiple CIs causing many troubles. For example, the test prevents to get results of the two Refleak 3.x buildbots.
-
- 07 Haz, 2018 7 kayıt (commit)
-
-
Terry Jan Reedy yazdı
-
Victor Stinner yazdı
The cancellation of an overlapped WSARecv() has a race condition which causes data loss because of the current implementation of proactor in asyncio. No longer cancel overlapped WSARecv() in _ProactorReadPipeTransport to work around the race condition. Remove the optimized recv_into() implementation to get simple implementation of pause_reading() using the single _pending_data attribute. Move _feed_data_to_bufferred_proto() to protocols.py. Remove set_protocol() method which became useless.
-
Neil Schemenauer yazdı
A few wording improvements to dict ordering documentation.
-
Eric V. Smith yazdı
-
Benjamin Peterson yazdı
Followup to 4705ea38 and bpo-33778.
-
Anthony Sottile yazdı
-
Scott Sanderson yazdı
-