- 19 Eyl, 2017 8 kayıt (commit)
-
-
Oren Milman yazdı
bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (#3227)
-
Oren Milman yazdı
bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name is not a string. (#3257)
-
Oren Milman yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
- 18 Eyl, 2017 7 kayıt (commit)
-
-
Antoine Pitrou yazdı
* Trivial cleanups following bpo-31370 * Also cleanup the "importlib._bootstrap_external" module
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
* bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash xml.etree: xmlparser_gc_clear() now sets self.parser to NULL to prevent a crash in xmlparser_dealloc() if xmlparser_gc_clear() was called previously by the garbage collector, because the parser was part of a reference cycle. Co-Authored-By: Serhiy Storchaka <storchaka@gmail.com>
-
svelankar yazdı
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
This reverses a never-released regression resulting from bpo-31287.
-
- 17 Eyl, 2017 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
This function returns the last component of tp_name after a dot. Returns tp_name itself if it doesn't contain a dot.
-
Raymond Hettinger yazdı
bpo-31482: Missing bytes support for random.seed() version 1 #3614
-
Mariatta yazdı
Shorten the comment to: "using integer format specifier"
-
Oren Milman yazdı
bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is defined only outside _fields_. (#3615)
-
Terry Jan Reedy yazdı
Canceling timers prevents a warning message when test_idle completes. (This is the minimum fix needed before upcoming releases.)
-
- 16 Eyl, 2017 3 kayıt (commit)
-
-
Mariatta yazdı
Provide additional examples of using format specifiers in f-strings Added examples for using integer and date format specifiers.
-
Mariatta yazdı
-
Terry Jan Reedy yazdı
When apply changes, call .reload on each class with non-key options. Change ParenMatch so that updates affect current instances.
-
- 15 Eyl, 2017 11 kayıt (commit)
-
-
Eric Snow yazdı
The concrete PyDict_* API is used to interact with PyInterpreterState.modules in a number of places. This isn't compatible with all dict subclasses, nor with other Mapping implementations. This patch switches the concrete API usage to the corresponding abstract API calls. We also add a PyImport_GetModule() function (and some other helpers) to reduce a bunch of code duplication.
-
Christian Heimes yazdı
Signed-off-by: Christian Heimes <christian@python.org>
-
Christian Heimes yazdı
Replaces PROTOCOL_TLSv* and PROTOCOL_SSLv23 with PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER. Signed-off-by: Christian Heimes <christian@python.org>
-
Christian Heimes yazdı
SSLSocket.wrap_bio() and SSLSocket.wrap_socket() hard-code SSLObject and SSLSocket as return types. In the light of future deprecation of ssl.wrap_socket() module function and direct instantiation of SSLSocket, it is desirable to make the return type of SSLSocket.wrap_bio() and SSLSocket.wrap_socket() customizable. Signed-off-by: Christian Heimes <christian@python.org>
-
Terry Jan Reedy yazdı
'Strip trailing whitespace' is not limited to spaces. Wording caters to beginners who do know know the meaning of 'whitespace'. Multiline string literals are not skipped. * News blurb.
-
Paul Romano yazdı
-
Michael Seifert yazdı
-
Victor Stinner yazdı
Give 30 seconds to join_process(), instead of 5 or 10 seconds, to wait until the process completes.
-
Victor Stinner yazdı
Call the .join() method of threading.Timer timers to prevent the "threading_cleanup() failed to cleanup 1 threads" warning.
-
Serhiy Storchaka yazdı
-
Barry Warsaw yazdı
* Add Py_UNREACHABLE() as an alias to abort(). * Use Py_UNREACHABLE() instead of assert(0) * Convert more unreachable code to use Py_UNREACHABLE() * Document Py_UNREACHABLE() and a few other macros.
-
- 14 Eyl, 2017 6 kayıt (commit)
-
-
Terry Jan Reedy yazdı
Enabled by default was a temporary expedient. The fix is to add a user override to enable.
-
Feanil Patel yazdı
New -n flag allow overriding localhost with custom value, for example to run from containers.
-
Victor Stinner yazdı
Fix Coverity CID 1417587: _PyMem_Initialize() contains code which is never executed. Replace the runtime check with a build assertion.
-
Victor Stinner yazdı
join_thread() joins a thread but raises an AssertionError if the thread is still alive after timeout seconds.
-
Victor Stinner yazdı
Call thread.join() to prevent the "dangling thread" warning.
-
Victor Stinner yazdı
Use _thread.count() to wait until threads exit. The new context manager prevents the "dangling thread" warning.
-