summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix #14901. Update some sections of Windows FAQ.Brian Curtin2012-12-172-305/+30
| | | | Patch by Ashish Nitin Patil.
* Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-163-1/+17
| | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
* #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-163-1/+10
| | | | Patch by Sebastian Kreft.
* remove dead codeBenjamin Peterson2012-12-151-2/+0
|
* Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-154-1/+23
| | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
* #16683: restore alphabetical order in audioop docs. Patch by Serhiy Storchaka.Ezio Melotti2012-12-141-6/+6
|
* #16681: use "bidirectional class" instead of "bidirectional category" in the ↵Ezio Melotti2012-12-141-1/+1
| | | | docstring too.
* #16681: use "bidirectional class" instead of "bidirectional category".Ezio Melotti2012-12-141-1/+1
|
* Make PyAST_obj2mod C89 compliant. (Follow-up commit from asdl_c.py.)Trent Nelson2012-12-131-3/+11
|
* Make PyAST_obj2mod C89 compliant.Trent Nelson2012-12-131-3/+11
|
* IRIX: force MIPSpro to treat #errors as errors, not warnings.Trent Nelson2012-12-132-0/+66
|
* 1 << 31 is invalid for signed integers, fix it by making 1 unsigned.Gregory P. Smith2012-12-111-2/+2
| | | | Found by Clang trunk's Undefined-Behavior Sanitizer. [more to come]
* Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
|
* Document the reason attribute of urllib.HTTPError Patch by Berker PeksagSenthil Kumaran2012-12-091-0/+3
|
* Issue #16248: Disable code execution from the user's home directory by ↵Antoine Pitrou2012-12-092-1/+6
| | | | | | tkinter when the -E flag is passed to Python. Patch by Zachary Ware.
* Branch mergeÉric Araujo2012-12-096-16/+33
|\
| * Use proper skip instead of reporting success in one distutils testÉric Araujo2012-12-091-7/+1
| |
| * Fix setup.py register failure with invalid rst in description (#13614).Éric Araujo2012-12-094-4/+29
| | | | | | | | Original patch by Julien Courteau and Pierre Paul Lefebvre.
| * Remove code unneeded after f833e7ec4de1Éric Araujo2012-12-081-5/+0
| |
| * Add versionchanged note for a56cebff113aÉric Araujo2012-12-081-0/+3
| |
* | Issue #16602: When a weakref's target was part of a long deallocation chain, ↵Antoine Pitrou2012-12-085-4/+39
|/ | | | | | the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue.
* Drop double newlines printed in some file iteration examples.Andrew Svetlov2012-12-084-6/+7
| | | | Patch by Steven Kryskalla.
* Remove debug output from example.Ezio Melotti2012-12-081-1/+0
|
* Issue #16628: Fix a memory leak in ctypes.resize().Antoine Pitrou2012-12-084-2/+5
|
* Document that hour in datetime.time ctor is optional parameter.Andrew Svetlov2012-12-061-1/+1
| | | | Thanks to Sean Munkel from docs@
* Closes #16588: Silence unused-but-set warnings in Python/thread_pthread.hJesus Cea2012-12-052-0/+5
|
* Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised.Victor Stinner2012-12-042-3/+24
| | | | | | This is necessary for ZFS systems, which don't support UF_IMMUTABLE. -- Kubilay Kocak (koobs) asked me on IRC to backport this fix to Python 2.7: done!
* Fix test splitting in previous commit.Antoine Pitrou2012-12-031-4/+2
|
* Split the bigmem re test in two separate tests with different memory ↵Antoine Pitrou2012-12-031-2/+10
| | | | requirements.
* document UnicodeError attributesBenjamin Peterson2012-12-021-0/+24
|
* Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on ↵Mark Dickinson2012-12-024-8/+93
| | | | some platforms.
* Issue #10182: The re module doesn't truncate indices to 32 bits anymore.Antoine Pitrou2012-12-023-5/+24
| | | | Patch by Serhiy Storchaka.
* - Issue #16593: Have BSD 'make -s' do the right thing, thanks to Daniel ShahafChristian Heimes2012-12-021-2/+3
|
* Minor fixups. Early-out for equality test. Inline PREV/NEXT constants.Raymond Hettinger2012-12-021-16/+15
|
* #16589: fix pprint signatures in the doc (backport of 106ee4eb5970).Ezio Melotti2012-12-011-7/+6
|
* Add Bruno DupuisBenjamin Peterson2012-11-301-0/+1
|
* fix spellingBenjamin Peterson2012-11-301-2/+3
|
* Remove redundant check for symlink. (closes #6036)Benjamin Peterson2012-11-301-13/+14
| | | | Patch by Bruno Dupuis.
* Backport from 3.2: improve argument/parameter documentation (issue #15990).Chris Jerdonek2012-11-303-18/+90
| | | | | The corresponding 3.x commits are 69d5d834c5cb, 40fd26a4206b, and 74d8a2a20c52.
* merge headsAndrew Svetlov2012-11-291-0/+11
|\
| * Issue #16194: document imp.load_dynamic problemsAndrew Svetlov2012-11-291-0/+11
| | | | | | | | when read several extension modules from the same binary object file.
* | add changelogBenjamin Peterson2012-11-291-0/+4
| |
* | enumerate only requires an iterable (closes #16573)Benjamin Peterson2012-11-292-6/+18
|/ | | | Patch by Jonathan Kotta.
* Issue #16477: Close tarfile internal handlers in case of exception.Andrew Svetlov2012-11-291-7/+7
| | | | Patch by Serhiy Storchaka.
* #16549: fix test failures on Windows.Ezio Melotti2012-11-291-2/+2
|
* #16476: Fix json.tool to avoid including trailing whitespace.Ezio Melotti2012-11-293-9/+12
|
* #16549: Add tests for json.tools. Initial patch by Berker Peksag and Serhiy ↵Ezio Melotti2012-11-294-6/+81
| | | | Storchaka.
* Issue #16534: On HP-UX ac_cv_olimit_ok=yes is a false positive.Stefan Krah2012-11-282-2/+16
|
* #16333: document a way to get rid of trailing whitespace when indent is used.Ezio Melotti2012-11-283-6/+26
|
* Plug a leak in timemodule. The module dictionary is saved duringGregory P. Smith2012-11-272-3/+9
| | | | | | | | initialization. If the interpreter is shut down and reinitialized (embedded CPython), the old module dictionary was not dec-refed during the next import of the time extension module. Contributed by Torsten Marek of Google.