summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix pickle doc typoGeorge Yoshida2006-12-051-1/+1
| | | | | Patch #1608758 (backport from r52917)
* - Fix build failure on kfreebsd and on the hurd.Matthias Klose2006-12-032-1/+3
|
* Patch #1544279: Improve thread-safety of the socket module by movingMartin v. Löwis2006-12-033-53/+48
| | | | the sock_addr_t storage out of the socket object.
* Fix nit in comment.Raymond Hettinger2006-12-021-1/+1
|
* Backport of r52862.Armin Rigo2006-11-291-1/+3
|
* Fix #1563807: _ctypes built on AIX fails with ld ffi error.Thomas Heller2006-11-282-1/+3
| | | | | | | The contents of ffi_darwin.c must be compiled unless __APPLE__ is defined and __ppc__ is not. Backport from trunk.
* Bug #1603789: grammatical error in Tkinter docs.Georg Brandl2006-11-271-1/+1
| | | | (backport from rev. 52850)
* Bug #1603321: make pstats.Stats accept Unicode file paths.Georg Brandl2006-11-261-1/+1
| | | | (backport from rev. 52845)
* Disable _XOPEN_SOURCE on NetBSD 1.x.Martin v. Löwis2006-11-253-1/+13
|
* Fix bug #1598620: A ctypes structure cannot contain itself.Thomas Heller2006-11-243-3/+45
| | | | Backport from trunk.
* Bug #1601630: little improvement to getopt docsGeorg Brandl2006-11-231-3/+6
| | | | (backport from rev. 52833)
* Backport checkin:Walter Dörwald2006-11-232-1/+5
| | | | | Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig')) SF bug #1601501.
* Conditionalize definition of _CRT_SECURE_NO_DEPRECATEMartin v. Löwis2006-11-212-0/+11
| | | | and _CRT_NONSTDC_NO_DEPRECATE.
* Fix SF #1599879, socket.gethostname should ref getfqdn directly.Neal Norwitz2006-11-211-2/+2
|
* Oops, convert tabs to spacesNeal Norwitz2006-11-211-2/+2
|
* Backport of 52811:Neal Norwitz2006-11-213-2/+6
| | | | | | | | | Bug #1599782: Fix segfault on bsddb.db.DB().type(). The problem is that _DB_get_type() can't be called without the GIL because it calls a bunch of PyErr_* APIs when an error occurs. There were no other cases in this file that it was called without the GIL. Removing the BEGIN/END THREAD around _DB_get_type() made everything work.
* Jython compatibility fix: if uu.decode() opened its output file, be sure toAndrew M. Kuchling2006-11-201-0/+4
| | | | close it.
* Add extra SHA testsAndrew M. Kuchling2006-11-201-1/+18
|
* Patch #1472877: Fix Tix subwidget name resolution.Martin v. Löwis2006-11-182-1/+6
|
* Patch #1594554: Always close a tkSimpleDialog on ok(), evenMartin v. Löwis2006-11-182-3/+7
| | | | if an exception occurs.
* Patch #1538878: Don't make tkSimpleDialog dialogs transient ifMartin v. Löwis2006-11-182-1/+9
| | | | | the parent window is withdrawn. This mirrors what dialog.tcl does.
* Remove locking of individual message files in MH.pack().Andrew M. Kuchling2006-11-173-21/+26
| | | | [Backport of rev52776 from the trunk.]
* Bug #1588217: don't parse "= " as a soft line break in binascii'sGeorg Brandl2006-11-163-3/+6
| | | | | | a2b_qp() function, instead leave it in the string as quopri.decode() does. (backport from rev. 52765)
* Bug #1597576: mention that the new base64 api has been introduced in py2.4.Georg Brandl2006-11-161-1/+1
| | | | (backport from rev. 52762)
* Bug #1594809: add a note to README regarding PYTHONPATH and make install.Georg Brandl2006-11-151-0/+5
| | | | (backport from rev. 52754)
* Patch #1360200: Use unmangled_version RPM spec field to deal withMartin v. Löwis2006-11-122-3/+7
| | | | file name mangling.
* Patch #1359217: Ignore 2xx response before 150 response.Martin v. Löwis2006-11-122-0/+14
|
* Bug #1594758: wording improvement for dict.update() docs.Georg Brandl2006-11-111-1/+2
| | | | (backport from rev. 52733)
* Bug #1594742: wrong word in stringobject doc.Georg Brandl2006-11-111-1/+1
| | | | (backport from rev. 52731)
* Fix SF#1566719: not creating site-packages (or other target directory) whenPhillip J. Eby2006-11-101-0/+3
| | | | | installing .egg-info for a project that contains no modules or packages, while using --root (as in bdist_rpm). (Backport from trunk)
* [Feature request #1542920] Link to wsgi.orgAndrew M. Kuchling2006-11-101-1/+2
|
* [Patch #1514543] mailbox (Maildir): avoid losing messages on name clashAndrew M. Kuchling2006-11-102-5/+26
| | | | | | | | | Two changes: Where possible, use link()/remove() to move files into a directory; this makes it easier to avoid overwriting an existing file. Use _create_carefully() to create files in tmp/, which uses O_EXCL.
* [Patch #1514544 by David Watson] use fsync() to ensure data is really on diskAndrew M. Kuchling2006-11-102-9/+29
|
* Backport checkin:Walter Dörwald2006-11-091-1/+1
| | | | Replace C++ comment with C comment (fixes SF bug #1593525).
* [Bug #1569790] mailbox.Maildir.get_folder() loses factory informationAndrew M. Kuchling2006-11-093-5/+35
| | | | | Both the Maildir and MH classes had this bug; the patch fixes both classes and adds a test.
* Patch #838546: Make terminal become controlling in pty.fork().Martin v. Löwis2006-11-092-0/+6
|
* Bug #1592533: rename variable in heapq doc example, to avoid shadowingGeorg Brandl2006-11-081-4/+4
| | | | | "sorted". (backport from rev. 52668)
* Patch #1592072: fix docs for return value of PyErr_CheckSignals.Georg Brandl2006-11-081-1/+1
| | | | (backport from rev. 52666)
* Correctly forward exception in instance_contains().Martin v. Löwis2006-11-083-4/+16
| | | | Fixes #1591996. Patch contributed by Neal Norwitz.
* Add missing wordAndrew M. Kuchling2006-11-071-1/+1
|
* Fix markup and grammatical errors. Backport from trunkThomas Heller2006-11-071-6/+4
|
* backport of revision 52644Ronald Oussoren2006-11-071-13/+12
|
* backport: note that user can control directory location even if default dir ↵Skip Montanaro2006-11-061-1/+6
| | | | is used
* Backport 52621:Neal Norwitz2006-11-043-0/+4
| | | | Bug #1588287: fix invalid assertion for `1,2` in debug builds.
* Patch #1060577: Extract list of RPM files from spec file inMartin v. Löwis2006-11-042-25/+38
| | | | bdist_rpm
* Fix code example by adding a missing import.Thomas Heller2006-11-021-1/+1
| | | | | | Fixes #1557890. Backported from trunk.
* Replace the XXX marker in the 'Arrays and pointers' reference manualThomas Heller2006-11-021-1/+2
| | | | | | section with a link to the tutorial sections. Backported from trunk.
* Fix refleakNeal Norwitz2006-10-291-0/+1
|
* Bug #1576657: when setting a KeyError for a tuple key, make sure thatGeorg Brandl2006-10-293-3/+29
| | | | | the tuple isn't used as the "exception arguments tuple". (backport from rev. 52535)
* Bug #1586773: extend hashlib docstring.Georg Brandl2006-10-291-1/+30
| | | | (backport from rev. 52532)