| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix pickle doc typo | George Yoshida | 2006-12-05 | 1 | -1/+1 |
| | | | | | | Patch #1608758 (backport from r52917) | ||||
| * | - Fix build failure on kfreebsd and on the hurd. | Matthias Klose | 2006-12-03 | 2 | -1/+3 |
| | | |||||
| * | Patch #1544279: Improve thread-safety of the socket module by moving | Martin v. Löwis | 2006-12-03 | 3 | -53/+48 |
| | | | | | the sock_addr_t storage out of the socket object. | ||||
| * | Fix nit in comment. | Raymond Hettinger | 2006-12-02 | 1 | -1/+1 |
| | | |||||
| * | Backport of r52862. | Armin Rigo | 2006-11-29 | 1 | -1/+3 |
| | | |||||
| * | Fix #1563807: _ctypes built on AIX fails with ld ffi error. | Thomas Heller | 2006-11-28 | 2 | -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 Brandl | 2006-11-27 | 1 | -1/+1 |
| | | | | | (backport from rev. 52850) | ||||
| * | Bug #1603321: make pstats.Stats accept Unicode file paths. | Georg Brandl | 2006-11-26 | 1 | -1/+1 |
| | | | | | (backport from rev. 52845) | ||||
| * | Disable _XOPEN_SOURCE on NetBSD 1.x. | Martin v. Löwis | 2006-11-25 | 3 | -1/+13 |
| | | |||||
| * | Fix bug #1598620: A ctypes structure cannot contain itself. | Thomas Heller | 2006-11-24 | 3 | -3/+45 |
| | | | | | Backport from trunk. | ||||
| * | Bug #1601630: little improvement to getopt docs | Georg Brandl | 2006-11-23 | 1 | -3/+6 |
| | | | | | (backport from rev. 52833) | ||||
| * | Backport checkin: | Walter Dörwald | 2006-11-23 | 2 | -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_DEPRECATE | Martin v. Löwis | 2006-11-21 | 2 | -0/+11 |
| | | | | | and _CRT_NONSTDC_NO_DEPRECATE. | ||||
| * | Fix SF #1599879, socket.gethostname should ref getfqdn directly. | Neal Norwitz | 2006-11-21 | 1 | -2/+2 |
| | | |||||
| * | Oops, convert tabs to spaces | Neal Norwitz | 2006-11-21 | 1 | -2/+2 |
| | | |||||
| * | Backport of 52811: | Neal Norwitz | 2006-11-21 | 3 | -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 to | Andrew M. Kuchling | 2006-11-20 | 1 | -0/+4 |
| | | | | | close it. | ||||
| * | Add extra SHA tests | Andrew M. Kuchling | 2006-11-20 | 1 | -1/+18 |
| | | |||||
| * | Patch #1472877: Fix Tix subwidget name resolution. | Martin v. Löwis | 2006-11-18 | 2 | -1/+6 |
| | | |||||
| * | Patch #1594554: Always close a tkSimpleDialog on ok(), even | Martin v. Löwis | 2006-11-18 | 2 | -3/+7 |
| | | | | | if an exception occurs. | ||||
| * | Patch #1538878: Don't make tkSimpleDialog dialogs transient if | Martin v. Löwis | 2006-11-18 | 2 | -1/+9 |
| | | | | | | the parent window is withdrawn. This mirrors what dialog.tcl does. | ||||
| * | Remove locking of individual message files in MH.pack(). | Andrew M. Kuchling | 2006-11-17 | 3 | -21/+26 |
| | | | | | [Backport of rev52776 from the trunk.] | ||||
| * | Bug #1588217: don't parse "= " as a soft line break in binascii's | Georg Brandl | 2006-11-16 | 3 | -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 Brandl | 2006-11-16 | 1 | -1/+1 |
| | | | | | (backport from rev. 52762) | ||||
| * | Bug #1594809: add a note to README regarding PYTHONPATH and make install. | Georg Brandl | 2006-11-15 | 1 | -0/+5 |
| | | | | | (backport from rev. 52754) | ||||
| * | Patch #1360200: Use unmangled_version RPM spec field to deal with | Martin v. Löwis | 2006-11-12 | 2 | -3/+7 |
| | | | | | file name mangling. | ||||
| * | Patch #1359217: Ignore 2xx response before 150 response. | Martin v. Löwis | 2006-11-12 | 2 | -0/+14 |
| | | |||||
| * | Bug #1594758: wording improvement for dict.update() docs. | Georg Brandl | 2006-11-11 | 1 | -1/+2 |
| | | | | | (backport from rev. 52733) | ||||
| * | Bug #1594742: wrong word in stringobject doc. | Georg Brandl | 2006-11-11 | 1 | -1/+1 |
| | | | | | (backport from rev. 52731) | ||||
| * | Fix SF#1566719: not creating site-packages (or other target directory) when | Phillip J. Eby | 2006-11-10 | 1 | -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.org | Andrew M. Kuchling | 2006-11-10 | 1 | -1/+2 |
| | | |||||
| * | [Patch #1514543] mailbox (Maildir): avoid losing messages on name clash | Andrew M. Kuchling | 2006-11-10 | 2 | -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 disk | Andrew M. Kuchling | 2006-11-10 | 2 | -9/+29 |
| | | |||||
| * | Backport checkin: | Walter Dörwald | 2006-11-09 | 1 | -1/+1 |
| | | | | | Replace C++ comment with C comment (fixes SF bug #1593525). | ||||
| * | [Bug #1569790] mailbox.Maildir.get_folder() loses factory information | Andrew M. Kuchling | 2006-11-09 | 3 | -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öwis | 2006-11-09 | 2 | -0/+6 |
| | | |||||
| * | Bug #1592533: rename variable in heapq doc example, to avoid shadowing | Georg Brandl | 2006-11-08 | 1 | -4/+4 |
| | | | | | | "sorted". (backport from rev. 52668) | ||||
| * | Patch #1592072: fix docs for return value of PyErr_CheckSignals. | Georg Brandl | 2006-11-08 | 1 | -1/+1 |
| | | | | | (backport from rev. 52666) | ||||
| * | Correctly forward exception in instance_contains(). | Martin v. Löwis | 2006-11-08 | 3 | -4/+16 |
| | | | | | Fixes #1591996. Patch contributed by Neal Norwitz. | ||||
| * | Add missing word | Andrew M. Kuchling | 2006-11-07 | 1 | -1/+1 |
| | | |||||
| * | Fix markup and grammatical errors. Backport from trunk | Thomas Heller | 2006-11-07 | 1 | -6/+4 |
| | | |||||
| * | backport of revision 52644 | Ronald Oussoren | 2006-11-07 | 1 | -13/+12 |
| | | |||||
| * | backport: note that user can control directory location even if default dir ↵ | Skip Montanaro | 2006-11-06 | 1 | -1/+6 |
| | | | | | is used | ||||
| * | Backport 52621: | Neal Norwitz | 2006-11-04 | 3 | -0/+4 |
| | | | | | Bug #1588287: fix invalid assertion for `1,2` in debug builds. | ||||
| * | Patch #1060577: Extract list of RPM files from spec file in | Martin v. Löwis | 2006-11-04 | 2 | -25/+38 |
| | | | | | bdist_rpm | ||||
| * | Fix code example by adding a missing import. | Thomas Heller | 2006-11-02 | 1 | -1/+1 |
| | | | | | | | Fixes #1557890. Backported from trunk. | ||||
| * | Replace the XXX marker in the 'Arrays and pointers' reference manual | Thomas Heller | 2006-11-02 | 1 | -1/+2 |
| | | | | | | | section with a link to the tutorial sections. Backported from trunk. | ||||
| * | Fix refleak | Neal Norwitz | 2006-10-29 | 1 | -0/+1 |
| | | |||||
| * | Bug #1576657: when setting a KeyError for a tuple key, make sure that | Georg Brandl | 2006-10-29 | 3 | -3/+29 |
| | | | | | | the tuple isn't used as the "exception arguments tuple". (backport from rev. 52535) | ||||
| * | Bug #1586773: extend hashlib docstring. | Georg Brandl | 2006-10-29 | 1 | -1/+30 |
| | | | | | (backport from rev. 52532) | ||||
