summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22903: The fake test case created by unittest.loader when it fails ↵Antoine Pitrou2015-03-183-9/+32
| | | | importing a test module is now picklable.
* Issue #23353: improve exceptions tests for generatorsAntoine Pitrou2015-03-181-0/+46
|
* _tracemalloc.c: Fix typoVictor Stinner2015-03-181-1/+1
|
* Issue #11726: Fix linecache example in the docVictor Stinner2015-03-182-4/+4
| | | | | | | Use a Python source file (linecache.__file__) instead of /etc/passwd. Modify also linecache docstrings to clarify the linecache is written to cache Python source files, not any text files.
* Issue #11726: clarify linecache doc: linecache is written to cache PythonVictor Stinner2015-03-181-2/+5
| | | | source files, even if "it works" with other text files encoded to UTF-8.
* Issue #19428: Document that PyMarshal_ReadLongFromFile() andVictor Stinner2015-03-181-6/+15
| | | | PyMarshal_ReadShortFromFile() can fail.
* Issue #23456: Add missing @coroutine decorators in asyncioVictor Stinner2015-03-183-0/+5
|
* Issue #23207: Improved kwarg validation.Vinay Sajip2015-03-182-1/+5
|
* Issue #22585: make URandomFDTests test case actually runNed Deily2015-03-171-0/+1
|
* Issue #23682: Delete Python 2.2 mention from distutils documentation.Berker Peksag2015-03-171-14/+0
| | | | Patch by Thomas Kluyver.
* versionchanged for rc4 removal (closes #23679)Benjamin Peterson2015-03-161-2/+6
|
* Use non-zero and non-last positions in error handler tests.Serhiy Storchaka2015-03-161-24/+28
|
* Increased coverage of standard codec error handlers.Serhiy Storchaka2015-03-151-76/+158
|
* Issue #23549: Clarify confusion in heapq doc - accessing the mininmal elementEli Bendersky2015-03-151-2/+4
| | | | | | | The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1.
* Issue #23568: Add rdivmod support to MagicMock() objects.Berker Peksag2015-03-143-1/+21
| | | | Patch by Håkan Lövdahl.
* Fix minor docs markup errors.Serhiy Storchaka2015-03-142-2/+2
|
* Fixes incorrect use of GetLastError where errno should be used.Steve Dower2015-03-141-6/+6
|
* __getslice__ certainly won't appear in the outputBenjamin Peterson2015-03-131-1/+1
|
* Make the case to only support Python 2.7 when supporting 2/3 simultaneouslyBrett Cannon2015-03-131-13/+13
|
* Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar.Serhiy Storchaka2015-03-133-15/+57
| | | | Patch by Demian Brecht.
* Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() nowSerhiy Storchaka2015-03-134-14/+75
| | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts.
* use the meth role for ZipFile.openBenjamin Peterson2015-03-131-1/+1
|
* Issue #23081: Document that PySequence_List also accepts iterables.Berker Peksag2015-03-131-2/+3
| | | | Patch by Lars Buitinck.
* Issue #22154: Add an example to show context management protocol support of ↵Berker Peksag2015-03-131-0/+7
| | | | | | ZipFile.open(). Patch by Mike Short.
* Issue #23641: Cleaned out legacy dunder names from tests and docs.Serhiy Storchaka2015-03-1219-124/+72
| | | | Fixed 2 to 3 porting bug in pynche.ColorDB.
* Issue #20617: Remove unused import in test_ssl.Berker Peksag2015-03-121-1/+0
| | | | Patch by Mark Lawrence.
* Issue #23605: Refactor os.walk() tests to also run them on os.fwalk()Victor Stinner2015-03-121-37/+70
|
* Issue #22928: Disabled HTTP header injections in http.client.Serhiy Storchaka2015-03-123-0/+97
| | | | Original patch by Demian Brecht.
* Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet.Serhiy Storchaka2015-03-114-2/+25
|
* Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded withSerhiy Storchaka2015-03-115-6/+7
| | | | imp.reload(). Patch by Thomas Kluyver.
* Removes unused format string insertion in launcher.c.Steve Dower2015-03-111-1/+1
|
* Issue #23629: Fix the default __sizeof__ implementation for variable-sized ↵Antoine Pitrou2015-03-106-29/+22
| | | | objects.
* Issue #22028: Ensure mimetypes will not open registry keys with embedded nullsSteve Dower2015-03-101-1/+2
|
* asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yetVictor Stinner2015-03-101-2/+5
| | | | | Replace "running" with "not started" and don't show the pid if the subprocess didn't start yet.
* asyncio doc: changes on the Queue API missed Python 3.4.3 releaseVictor Stinner2015-03-101-4/+4
|
* Issue #23432: Remove duplicate content from SystemExit docs.Berker Peksag2015-03-101-13/+13
| | | | Also, document SystemExit.code attribute explicitly.
* Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last exampleVictor Stinner2015-03-101-2/+3
|
* fix up import styleBenjamin Peterson2015-03-091-5/+8
|
* Issue #23617: Correct plurals typo noted by Kentrell Johnson.Ned Deily2015-03-091-1/+1
|
* indicate correct version (closes #23608)Benjamin Peterson2015-03-081-1/+1
|
* Issue #21619: Cleaned up test_broken_pipe_cleanup.Serhiy Storchaka2015-03-081-10/+8
| | | | Patch by Martin Panter.
* Issue #20876: correctly close temporary file in ↵Antoine Pitrou2015-03-071-10/+9
| | | | test.support.fs_is_case_insensitive()
* replace Amazon links in the documentation (closes #23579)Benjamin Peterson2015-03-072-4/+4
| | | | Patch by Sayan Chowdhury.
* Issue #22853: Added regression test for using multiprocessing.Queue at importSerhiy Storchaka2015-03-061-0/+21
| | | | time. Patch by Davin Potts.
* remove redundant testBenjamin Peterson2015-03-061-5/+0
|
* fix potential refleak in PyFloat_AsDouble (closes #23590)Benjamin Peterson2015-03-062-0/+7
|
* Issue #23593: fix Misc/NEWS entriesNed Deily2015-03-061-1/+1
|
* Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2.Ned Deily2015-03-063-14/+20
|
* use _import_symbols to import VERIFY_* constantsBenjamin Peterson2015-03-051-2/+1
|
* adjust test_crl_check for trusted first being defaultBenjamin Peterson2015-03-051-1/+2
|