summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #26516: Fix test_capi on 32-bit systemVictor Stinner2016-03-141-11/+9
| | | | On 32-bit system, only 4 bytes after dumped for the tail.
* Issue #26516: Fix test_capi on WindowsVictor Stinner2016-03-141-4/+8
| | | | Pointers are formatted differently.
* Add PYTHONMALLOC env varVictor Stinner2016-03-141-0/+59
| | | | | | | | | | | | | Issue #26516: * Add PYTHONMALLOC environment variable to set the Python memory allocators and/or install debug hooks. * PyMem_SetupDebugHooks() can now also be used on Python compiled in release mode. * The PYTHONMALLOCSTATS environment variable can now also be used on Python compiled in release mode. It now has no effect if set to an empty string. * In debug mode, debug hooks are now also installed on Python memory allocators when Python is configured without pymalloc.
* Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22
|\
| * Issue #20556: Used specific assert methods in threading tests.Serhiy Storchaka2016-03-143-23/+22
| |
* | Issue #747320: Use email.utils.formatdate() to avoid code duplicationBerker Peksag2016-03-141-0/+14
| | | | | | | | | | | | in BaseHTTPRequestHandler Initial patch by karlcow.
* | Issue #16181: cookiejar.http2time() now returns None if year is higher than ↵Berker Peksag2016-03-141-0/+4
|\ \ | |/ | | | | datetime.MAXYEAR
| * Issue #16181: cookiejar.http2time() now returns None if year is higher than ↵Berker Peksag2016-03-141-0/+4
| | | | | | | | datetime.MAXYEAR
* | Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-7/+29
|\ \ | |/ | | | | Tamás Bence Gedai.
| * Issue #23718: Fixed parsing time in week 0 before Jan 1. Original patch bySerhiy Storchaka2016-03-121-7/+21
| | | | | | | | Tamás Bence Gedai.
* | Revert change 291d47954618Victor Stinner2016-03-121-2/+2
| | | | | | | | | | | | | | | | | | Revert: "Always test datetime.strftime("%4Y") Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900." In fact, strftime("%4Y") fails on most platforms.
* | Merge 3.5Victor Stinner2016-03-111-10/+10
|\ \ | |/
| * Issue #20589: Fix test_pathlibVictor Stinner2016-03-111-10/+10
| |
* | Always test datetime.strftime("%4Y")Victor Stinner2016-03-111-2/+2
| | | | | | | | Issue #13305: Always test datetime.datetime.strftime("%4Y") for years < 1900.
* | Issue #20589: Invoking Path.owner() and Path.group() on Windows now raiseBerker Peksag2016-03-111-0/+9
|\ \ | |/ | | | | NotImplementedError instead of ImportError.
| * Issue #20589: Invoking Path.owner() and Path.group() on Windows now raiseBerker Peksag2016-03-111-0/+9
| | | | | | | | NotImplementedError instead of ImportError.
* | Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
|\ \ | |/
| * Issue #25911: Tring to silence deprecation warnings in bytes path walk tests.Serhiy Storchaka2016-03-081-0/+11
| |
* | Backed out changeset da020e408c7fSerhiy Storchaka2016-03-081-5/+1
|\ \ | |/
| * Backed out changeset f9e22717722dSerhiy Storchaka2016-03-081-5/+1
| |\
| | * Backed out changeset 19a3e0e664afSerhiy Storchaka2016-03-081-5/+1
| | |
* | | Issue #15068: Got rid of excessive buffering in fileinput.Serhiy Storchaka2016-03-081-4/+75
|\ \ \ | |/ / | | | | | | The bufsize parameter is now deprecated and ignored.
| * | Issue #15068: Got rid of excessive buffering in the fileinput module.Serhiy Storchaka2016-03-081-1/+69
| | | | | | | | | | | | The bufsize parameter is no longer used.
* | | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
|\ \ \ | |/ / | | | | | | On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag.
| * | Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
| |\ \ | | |/ | | | | | | On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag.
| | * Issues #23808, #25911: Trying to fix walk tests on Windows.Serhiy Storchaka2016-03-081-1/+5
| | | | | | | | | | | | On Windows a symlink can has the FILE_ATTRIBUTE_DIRECTORY flag.
* | | MergeRaymond Hettinger2016-03-071-0/+8
|\ \ \ | |/ /
| * | Document another recipe for itertools: all_equal(). Inspired by David Beazley.Raymond Hettinger2016-03-071-0/+8
| | |
* | | Closes #19475: Added timespec to the datetime.isoformat() method.Alexander Belopolsky2016-03-061-6/+42
| | | | | | | | | | | | | | | | | | | | | Added an optional argument timespec to the datetime isoformat() method to choose the precision of the time component. Original patch by Alessandro Cucci.
* | | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-0/+5
|\ \ \ | |/ / | | | | | | Patch by Guo Ci Teo.
| * | Issue #26489: Add dictionary unpacking support to Tools/parser/unparse.pyBerker Peksag2016-03-061-0/+5
| | | | | | | | | | | | Patch by Guo Ci Teo.
* | | Issue #2202: Fix UnboundLocalError in ↵Berker Peksag2016-03-061-1/+11
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | AbstractDigestAuthHandler.get_algorithm_impls Raise ValueError if algorithm is not MD5 or SHA. Initial patch by Mathieu Dupuy.
| * | Issue #2202: Fix UnboundLocalError in ↵Berker Peksag2016-03-061-1/+11
| | | | | | | | | | | | | | | | | | | | | | | | AbstractDigestAuthHandler.get_algorithm_impls Raise ValueError if algorithm is not MD5 or SHA. Initial patch by Mathieu Dupuy.
| * | Issue #26167: Backported copy tests.Serhiy Storchaka2016-03-061-6/+49
| | |
* | | Issue #26167: Minimized overhead in copy.copy() and copy.deepcopy().Serhiy Storchaka2016-03-061-6/+49
| | | | | | | | | | | | | | | Optimized copying and deepcopying bytearrays, NotImplemented, slices, short lists, tuples, dicts, sets.
* | | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-065-50/+214
|\ \ \ | |/ /
| * | Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-065-50/+214
| | |
* | | Issue #25718: Fixed pickling and copying the accumulate() iterator with ↵Serhiy Storchaka2016-03-061-0/+10
|\ \ \ | |/ / | | | | | | total is None.
| * | Issue #25718: Fixed pickling and copying the accumulate() iterator with ↵Serhiy Storchaka2016-03-061-0/+10
| | | | | | | | | | | | total is None.
* | | Issue #26482: Allowed pickling recursive dequeues.Serhiy Storchaka2016-03-061-32/+36
| | |
* | | Fixed typo in pickle tests.Serhiy Storchaka2016-03-041-2/+2
|\ \ \ | |/ /
| * | Fixed typo in pickle tests.Serhiy Storchaka2016-03-041-2/+2
| | |
* | | merge 3.5 (closes #26478)Benjamin Peterson2016-03-041-0/+4
|\ \ \ | |/ /
| * | merge 3.4 (closes #26478)Benjamin Peterson2016-03-041-0/+4
| |\ \ | | |/
| | * properly use the ObjArgs variant of CallMethod in dictview binary operations ↵Benjamin Peterson2016-03-041-0/+4
| | | | | | | | | | | | (closes #26478)
| | * asyncio: Update 3.4 asyncio/test_tasks to upstream versionYury Selivanov2016-03-021-1/+2
| | |
* | | Issue #26335: Make mmap.write() return the number of bytes written likeBerker Peksag2016-03-021-0/+8
| | | | | | | | | | | | | | | | | | other write methods. Patch by Jakub Stasiak.
* | | Merge 3.5 (issue #25888)Yury Selivanov2016-03-021-0/+18
|\ \ \ | |/ /
| * | coroutines: Error when awaiting on coroutine that's being awaitedYury Selivanov2016-03-021-0/+18
| | | | | | | | | | | | Issue #25888
* | | Merge 3.5 (issue #26338)Yury Selivanov2016-03-021-10/+13
|\ \ \ | |/ /