summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.Ned Deily2015-03-191-1/+1
|\
| * Issue #23686: Update OS X 10.5 installer build to use OpenSSL 1.0.2a.Ned Deily2015-03-191-1/+1
| |
* | Issue #23632: Memoryviews now allow tuple indexing (including for ↵Antoine Pitrou2015-03-191-0/+3
| | | | | | | | multi-dimensional memoryviews).
* | Issue #23646: If time.sleep() is interrupted by a signal, the sleep is nowVictor Stinner2015-03-191-0/+4
| | | | | | | | | | | | | | retried with the recomputed delay, except if the signal handler raises an exception (PEP 475). Modify also test_signal to use a monotonic clock instead of the system clock.
* | Fixed Misc/NEWS entry for issue #23136.Serhiy Storchaka2015-03-191-1/+1
|\ \ | |/
| * Fixed Misc/NEWS entry for issue #23136.Serhiy Storchaka2015-03-191-1/+1
| |
* | Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-0/+3
|\ \ | |/ | | | | Jan 30 of previous year. Based on patch by Jim Carroll.
| * Issue #23136: _strptime now uniformly handles all days in week 0, includingSerhiy Storchaka2015-03-191-0/+3
| | | | | | | | Jan 30 of previous year. Based on patch by Jim Carroll.
* | Issue #23700: Iterator of NamedTemporaryFile now keeps a reference toSerhiy Storchaka2015-03-191-0/+3
|\ \ | |/ | | | | NamedTemporaryFile instance. Patch by Bohuslav Kabrda.
| * Issue #23700: Iterator of NamedTemporaryFile now keeps a reference toSerhiy Storchaka2015-03-191-0/+3
| | | | | | | | NamedTemporaryFile instance. Patch by Bohuslav Kabrda.
* | Issue #22903: The fake test case created by unittest.loader when it fails ↵Antoine Pitrou2015-03-181-0/+3
|\ \ | |/ | | | | importing a test module is now picklable.
| * Issue #22903: The fake test case created by unittest.loader when it fails ↵Antoine Pitrou2015-03-181-0/+3
| | | | | | | | importing a test module is now picklable.
* | Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall ifVictor Stinner2015-03-181-0/+5
| | | | | | | | | | | | available, syscall introduced in the Linux kernel 3.17. It is more reliable and more secure, because it avoids the need of a file descriptor and waits until the kernel has enough entropy.
* | Issue #2211: Updated the implementation of the http.cookies.Morsel class.Serhiy Storchaka2015-03-181-0/+8
| | | | | | | | | | | | | | | | | | Setting attributes key, value and coded_value directly now is deprecated. update() and setdefault() now transform and check keys. Comparing for equality now takes into account attributes key, value and coded_value. copy() now returns a Morsel, not a dict. repr() now contains all attributes. Optimized checking keys and quoting values. Added new tests. Original patch by Demian Brecht.
* | Fix patch attribution for issue 18983.Robert Collins2015-03-171-1/+1
| |
* | Issue #18983: Allow selection of output units in timeit.Robert Collins2015-03-171-0/+3
| | | | | | | | | | | | | | | | This allows manual selection of a specific unit such as usecs rather than the use of a heuristic. This is intended to aid machine processing of timeit output. Patch by Serhiy Storchaka.
* | Issue #23585: make patchcheck will ensure the interpreter is built.Robert Collins2015-03-161-0/+4
| |
* | Issue #23631: Fix traceback.format_list when a traceback has been mutated.Robert Collins2015-03-161-0/+2
| |
* | Issue #23568: Add rdivmod support to MagicMock() objects.Berker Peksag2015-03-141-0/+3
|\ \ | |/ | | | | Patch by Håkan Lövdahl.
| * Issue #23568: Add rdivmod support to MagicMock() objects.Berker Peksag2015-03-141-0/+3
| | | | | | | | Patch by Håkan Lövdahl.
* | Issue #2052: Add charset parameter to HtmlDiff.make_file().Berker Peksag2015-03-141-0/+2
| |
* | Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.Serhiy Storchaka2015-03-131-0/+3
|\ \ | |/ | | | | Patch by Demian Brecht.
| * Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.Serhiy Storchaka2015-03-131-0/+3
| | | | | | | | Patch by Demian Brecht.
* | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-132-0/+6
|\ \ | |/ | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
| * Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-132-0/+6
| | | | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
* | Issue #23581: Add matmul support to MagicMock.Berker Peksag2015-03-121-0/+2
| | | | | | | | Patch by Håkan Lövdahl.
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-121-0/+4
| | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu.
* | Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-121-0/+3
|\ \ | |/ | | | | Original patch by Demian Brecht.
| * Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-121-0/+3
| | | | | | | | Original patch by Demian Brecht.
* | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-111-0/+2
|\ \ | |/
| * Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-112-0/+3
| |
* | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-111-0/+3
|\ \ | |/ | | | | imp.reload(). Patch by Thomas Kluyver.
| * Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-111-0/+3
| | | | | | | | imp.reload(). Patch by Thomas Kluyver.
* | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-101-0/+3
|\ \ | |/ | | | | objects.
| * Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-101-0/+3
| | | | | | | | objects.
* | Issue #23605: os.walk() now calls os.scandir() instead of os.listdir().Victor Stinner2015-03-101-0/+4
| | | | | | | | | | The usage of os.scandir() reduces the number of calls to os.stat(). Initial patch written by Ben Hoyt.
* | Merge.Larry Hastings2015-03-091-0/+4
|\ \
| * | Issue #22980: Under Linux, C extensions now include bitness in the file name,Antoine Pitrou2015-03-081-0/+4
| | | | | | | | | | | | to make it easy to test 32-bit and 64-bit builds in the same working tree.
* | | Post-release changes for 3.5.0a2.Larry Hastings2015-03-091-1/+13
|/ /
* | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()Victor Stinner2015-03-081-0/+4
| | | | | | | | | | function -- a better and faster directory iterator". Patch written by Ben Hoyt.
* | Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.Serhiy Storchaka2015-03-071-0/+2
| |
* | Issue #21793: BaseHTTPRequestHandler again logs response code as numeric,Serhiy Storchaka2015-03-071-0/+3
| | | | | | | | not as stringified enum. Patch by Demian Brecht.
* | Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() nowVictor Stinner2015-03-061-0/+4
| | | | | | | | | | | | | | | | | | | | | | raise a SystemError if a function returns a result and raises an exception. The SystemError is chained to the previous exception. Refactor also PyObject_Call() and PyCFunction_Call() to make them more readable. Remove some checks which became useless (duplicate checks). Change reviewed by Serhiy Storchaka.
* | Issue #23593: fix Misc/NEWS entriesNed Deily2015-03-061-1/+1
|\ \ | |/
| * Issue #23593: fix Misc/NEWS entriesNed Deily2015-03-061-1/+1
| |
* | Issue #23594: merge 3.4Ned Deily2015-03-061-0/+2
|\ \ | |/
| * Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2.Ned Deily2015-03-061-0/+2
| |
* | Issue #22936: Allow showing local variables in unittest errors.Robert Collins2015-03-061-1/+2
| |
* | Issue #22936: Make it possible to show local variables in tracebacks.Robert Collins2015-03-051-0/+2
| |
* | merge 3.4 (#23476)Benjamin Peterson2015-03-051-0/+3
|\ \ | |/