summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a few quotes/backslashes.Ezio Melotti2012-09-203-7/+7
|
* Fix markup in smtpd.rst.Ezio Melotti2012-09-201-5/+6
|
* Fix rst markup in timeit docs.Ezio Melotti2012-09-201-10/+10
|
* #15970: xml.etree.ElementTree now serializes correctly the empty HTML ↵Ezio Melotti2012-09-193-1/+24
| | | | elements "meta" and "param".
* Silence compiler warnings on Solaris 10 via explicit (void *) casts.Trent Nelson2012-09-191-3/+3
| | | | (Compiler: Solaris Studio 12.3)
* #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka.Ezio Melotti2012-09-183-3/+3
|
* #11643: fix rst markup error in site.rst.Ezio Melotti2012-09-171-1/+1
|
* #15920: fix doctests in Doc/howto/regex.rst. Patch by Chris Jerdonek.Ezio Melotti2012-09-171-13/+13
|
* Issue #15526: try to fix test_startfile's inability to clean up after itself ↵Antoine Pitrou2012-09-151-8/+7
| | | | | | in time. Patch by Jeremy Kloth.
* #15789: mention shell-like parts of the stdlib in the subprocess docs. ↵Ezio Melotti2012-09-151-3/+7
| | | | Patch by Chris Rebert.
* #15932: use with statement in csv doc examples. Patch by Dario Bertini.Ezio Melotti2012-09-151-13/+15
|
* Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ↵Antoine Pitrou2012-09-143-2/+28
| | | | | | ValueError when the file-like object is closed. Patch by Alessandro Moura.
* #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-1413-46/+89
| | | | Jerdonek.
* #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst ↵Ezio Melotti2012-09-133-244/+124
| | | | accordingly.
* Update merge from 2.7: s/basetring/strBarry Warsaw2012-09-121-1/+1
|
* A follow up for issue #15906: change the test for calling the type conversionBarry Warsaw2012-09-122-5/+28
| | | | | | | | on the action's default, reverting it back to previous behavior. Conversion is only done on string defaults. Add a test for this and another test that ensures such type conversions are only called once.
* Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to ↵Christian Heimes2012-09-121-1/+3
| | | | decref 'k' in too many error cases.
* Partly revert ad3824a90261 and add comment about reference ownershipChristian Heimes2012-09-121-2/+1
|
* Fix out of bounds read in long_new() for empty bytes with an explicit base. ↵Christian Heimes2012-09-121-2/+2
| | | | int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359
* - Issue #15906: Fix a regression in argparse caused by the preceding change,Barry Warsaw2012-09-123-0/+14
| | | | when action='append', type='str' and default=[].
* #14617: clarify discussion of interrelationship of __eq__ and __hash__.R David Murray2012-09-111-13/+13
|
* Fix null pointer dereferencing in structmember.c PyMember_SetOne() for ↵Christian Heimes2012-09-111-5/+1
| | | | T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815
* Fix issue #15899: Make the unicode.rst doctests pass. Patch by Chris Jerdonek.Senthil Kumaran2012-09-111-14/+13
|
* Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-113-7/+6
|
* #15676: mmap: add empty file check prior to offset check <- Previous patch ↵Jesus Cea2012-09-101-0/+1
| | | | was incomplete (fix 2)
* #15676: mmap: add empty file check prior to offset check <- Previous patch ↵Jesus Cea2012-09-102-5/+10
| | | | was incomplete
* #15676: Proper attribution in Misc/ACKSJesus Cea2012-09-101-0/+1
|
* Fixed memory leak in error branch of object_repr which may leak a reference ↵Christian Heimes2012-09-101-1/+3
| | | | to mod when type_name returns NULL. CID 715371
* Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s ↵Christian Heimes2012-09-101-0/+1
| | | | going out of scope leaks the storage it points to.
* #14649: clarify DocTestSuite error when there are no docstrings.R David Murray2012-09-106-6/+84
| | | | | | | Also adds tests to verify the documented behavior (which is probably a bug, as indicated in the added comments). Patch by Chris Jerdonek.
* backport from the trunk, to fix test_tools with srcdir != builddirdoko@ubuntu.com2012-09-101-2/+2
| | | | | | | | | | | | changeset: 77827:c23b442b5d5e user: Antoine Pitrou <solipsis@pitrou.net> date: Thu Jun 28 01:20:26 2012 +0200 summary: Avoid using scrdir, it's broken. changeset: 77826:f0e58e778215 user: Neil Schemenauer <nas@arctrix.com> date: Wed Jun 27 15:58:37 2012 -0600 summary: Fix bug in test_tools that prevented building is separate directory.
* Issue #15901: Change example to use byte string instead of stringRichard Oudkerk2012-09-101-1/+1
|
* Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
|
* Closed reference leak of variable 'k' in function ste_new which wasn't ↵Christian Heimes2012-09-101-1/+2
| | | | decrefed in error cases
* Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
|
* PyTuple_Pack() was missing va_end() in its error branch which lead to a ↵Christian Heimes2012-09-101-1/+3
| | | | resource leak.
* Py_TYPE() has already dereferenced self before the NULL check. Moved ↵Christian Heimes2012-09-101-1/+2
| | | | Py_TYPE() after the check for self == NULL
* Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-093-0/+17
|
* Issue #15881: Added NEWS entry and proper credit.Alexander Belopolsky2012-09-092-1/+3
|
* Issue #15881: Fixed 3.2 backport.Alexander Belopolsky2012-09-091-0/+2
|
* Fixed whitespaceAlexander Belopolsky2012-09-091-1/+1
|
* Issue #15881: Fixed atexit hook in multiprocessing.Alexander Belopolsky2012-09-092-16/+39
|
* Issue #15822: Fix installation of lib2to3 grammar pickles to ensureNed Deily2012-09-093-4/+23
| | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL)
* #5088: document behavior of optparse defaults with 'append' action.R David Murray2012-09-081-0/+11
|
* Merge heads.Ezio Melotti2012-09-082-8/+14
|\
| * #15865: add "*" in the signature to document keyword-only args in the docs. ↵Ezio Melotti2012-09-082-8/+14
| | | | | | | | Patch by Chris Jerdonek.
* | #15510: clarify textwrap's handling of whitespace, and add confirming tests.R David Murray2012-09-082-14/+69
|/ | | | Patch by Chris Jerdonek.
* #15847: allow args to be a tuple in parse_argsR David Murray2012-09-082-1/+22
| | | | | | | | This fixes a regression introduced by the fix for issue #13922. Although args is not documented as being allowed to be a tuple, previously this worked and so naturally there are programs in the field that depend on it. Patch by Zbyszek Jędrzejewski-Szmek.
* Issue #15868: Fix refleak in bytesio.c (Coverity #715365).Stefan Krah2012-09-081-1/+3
|
* Issue #15340: Fix importing the random module when /dev/urandom cannot be ↵Antoine Pitrou2012-09-072-1/+5
| | | | | | opened. This was a regression caused by the hash randomization patch.