summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [Backport of r56382]Andrew M. Kuchling2007-07-143-2/+20
| | | | | | | | | Avoid exception if there's a stray directory inside a Maildir folder. The Maildir specification doesn't seem to say anything about this situation, and it can happen if you're keeping a Maildir mailbox in Subversion (.svn directories) or some similar system. The patch just ignores directories in the cur/, new/, tmp/ folders.
* Typo fixAndrew M. Kuchling2007-07-141-1/+1
|
* Clarify webbrowser.open description.Georg Brandl2007-07-141-1/+1
| | | | (backport from rev. 56366)
* Bug #1753406: missing \versionadded for subprocess.check_call.Georg Brandl2007-07-141-0/+2
| | | | (backport from rev. 56364)
* Backport 56345Raymond Hettinger2007-07-141-3/+3
|
* In response to this SF bug:Barry Warsaw2007-07-132-0/+23
| | | | | | | | | | [ 1752723 ] email.message_from_string: initial line gets discarded I added a test to assert that when the first line of text passed to message_from_string() contains a leading space, the message ends up with the appropriate FirstHeaderLineIsContinuationDefect on its defects list. The bug is invalid.
* PyType_stgdict() returns a borrowed reference which must not beThomas Heller2007-07-131-2/+0
| | | | Py_DECREF'd.
* News entry forThomas Heller2007-07-131-0/+3
| | | | Fix for SF# 1649098: avoid zero-sized array declaration in structure.
* Fix for SF# 1649098: avoid zero-sized array declaration in structure.Thomas Heller2007-07-132-2/+2
|
* Fix for SF# 1701409: segfault in c_char_p of ctypes. The repr outputThomas Heller2007-07-132-0/+12
| | | | of c_char_p and c_wchar_p has changed as a sideeffect.
* Bug #1637365: add subsection about "__name__ == __main__" to theGeorg Brandl2007-07-122-0/+41
| | | | | Python tutorial. (backport from rev. 56306)
* Patch #1731659: improve time.strptime docs.Georg Brandl2007-07-121-9/+17
| | | | (backport from rev. 56302)
* Patch #1673759: add a missing overflow check when formatting floatsGeorg Brandl2007-07-124-5/+24
| | | | | with %G. (backport from rev. 56298)
* Patch #1739696: use code.co_code only if really necessaryGeorg Brandl2007-07-121-4/+3
| | | | (backport from rev. 56296)
* Patch #1752270, #1750931: complain if urllib2 add_handler calledGeorg Brandl2007-07-122-0/+10
| | | | | without handler. (backport from rev. 56293)
* Fix #1752132: wrong comment in opcode description.Georg Brandl2007-07-111-1/+1
| | | | (backport from rev. 56280)
* Patch 1673122: be explicit about which libtool to use, to avoid name clashesRonald Oussoren2007-07-092-1/+10
| | | | when a users install GNU libtool early in his PATH
* Patch 1693258: Fix for duplicate "preferences" menu-OS XRonald Oussoren2007-07-091-17/+25
| | | | Backport of 56204.
* Fixes IDLE crash on OSX: some versions of Tcl/Tk on OSX don't have aRonald Oussoren2007-07-091-1/+6
| | | | console object, avoid crashing in that case.
* Remove duplicate sentence from alarm() doc.Georg Brandl2007-07-021-2/+1
| | | | (backport from rev. 56143)
* Fix a few webbrowser.py problems.Georg Brandl2007-07-011-1/+3
| | | | (backport from rev. 56137)
* Document smtp.SMTPAuthenticationError.Georg Brandl2007-06-301-0/+4
| | | | (backport from rev. 56129)
* Fix a variable name in winreg docs.Georg Brandl2007-06-271-1/+1
| | | | (backport from rev. 56091)
* Bug #1742901: document None behavior of shlex.split.Georg Brandl2007-06-251-0/+3
| | | | (backport from rev. 56084)
* Bug #1739115: make shutil.rmtree docs clear wrt. file deletion.Georg Brandl2007-06-191-5/+6
| | | | (backport from rev. 56040)
* Bug #1737864: allow empty message in logging format routines.Georg Brandl2007-06-191-2/+2
| | | | (backport from rev. 56038)
* SF #1738670, make example in doc workNeal Norwitz2007-06-171-0/+6
|
* Add missing \versionadded.Georg Brandl2007-06-161-0/+1
| | | | (backport from rev. 56006)
* Merged revisions 55896 via svnmerge fromThomas Heller2007-06-152-13/+17
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Modules/_ctypes ........ r55896 | thomas.heller | 2007-06-11 17:58:33 +0200 (Mo, 11 Jun 2007) | 3 lines Use "O&" in calls to PyArg_Parse when we need a 'void*' instead of "k" or "K" codes. ........
* Patch #1734014: Use _I64_MAX instead of LLONG_MAX.Martin v. Löwis2007-06-141-3/+3
|
* Provide PY_LLONG_MAX on all systems having long long.Martin v. Löwis2007-06-131-4/+10
|
* Backport 55887:Neal Norwitz2007-06-113-3/+18
| | | | Bug #1734723: Fix repr.Repr() so it doesn't ignore the maxtuple attribute.
* Backport 55882: SF #1734732, lower case the module names per PEP 8.Neal Norwitz2007-06-111-26/+26
|
* Backport 55874:Neal Norwitz2007-06-113-4/+21
| | | | | Fix a bug when there was a newline in the string expandtabs was called on. This also catches another condition that can overflow.
* Backport 55873:Neal Norwitz2007-06-112-3/+4
| | | | Prevent these tests from running on Win64 since they don't apply there either
* Backport r55845: Provide LLONG_MAX for S390.Martin v. Löwis2007-06-091-0/+7
|
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-096-28/+76
|
* Prevent expandtabs() on string and unicode objects from causing a segfault whenNeal Norwitz2007-06-095-8/+49
| | | | | | | a large width is passed on 32-bit platforms. Found by Google. It would be good for people to review this especially carefully and verify I don't have an off by one error and there is no other way to cause overflow.
* Merged revisions 55129-55131 via svnmerge fromThomas Heller2007-06-084-11/+47
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk/Lib/ctypes ........ r55129 | thomas.heller | 2007-05-04 21:54:22 +0200 (Fr, 04 Mai 2007) | 3 lines Do not truncate 64-bit pointers to 32-bit integers. Fixes SF #1703286, will backport to release25-maint. ........ r55131 | thomas.heller | 2007-05-04 21:56:32 +0200 (Fr, 04 Mai 2007) | 1 line Oops, these tests do not run on Windows CE. ........
* Fix wrong documentation, and correct the punktuation.Thomas Heller2007-06-081-2/+2
| | | | | | Closes [1700455]. Backported from trunk.
* Bug #1733488: Fix compilation of bufferobject.c on AIX.Martin v. Löwis2007-06-082-1/+7
|
* backport change 55821 to release25-maintKristján Valur Jónsson2007-06-071-2/+9
|
* Patch #1667860: Fix UnboundLocalError in urllib2.Georg Brandl2007-06-072-1/+302
| | | | (backport from rev. 55805)
* Disallow function calls like foo(None=1).Georg Brandl2007-06-072-4/+12
| | | | | Backport from py3k rev. 55708 by Guido. (backport from rev. 55802)
* Backport rev. 55783:Georg Brandl2007-06-051-0/+1
| | | | Patch by Tim Delany (missing DECREF). SF #1731330.
* Fix for Windows: close a temporary file before trying to delete it.Hye-Shik Chang2007-06-051-0/+2
|
* (Backport from r55770)Hye-Shik Chang2007-06-053-1/+18
| | | | | | Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it reads a file that ends with incomplete sequence and sizehint argument for .read() is specified.
* Backport of r55752: make time.strptime() behave better when whitespace is inBrett Cannon2007-06-043-1/+13
| | | | the format arguments.
* Backport 55731:Neal Norwitz2007-06-024-1/+42
| | | | | SF 1668596/1720897: distutils now copies data files even if package_dir is empty.
* Fix wrong issue number.Georg Brandl2007-06-011-1/+1
| | | | (backport from rev. 55735)