| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Change decode() so that it works with a buffer (i.e. unicode(..., 'utf-8-sig')) | Walter Dörwald | 2006-11-23 | 2 | -1/+5 |
| | | | | | SF bug #1601501. | ||||
| * | Patch #1362975: Rework CodeContext indentation algorithm to | Martin v. Löwis | 2006-11-22 | 3 | -18/+64 |
| | | | | | | avoid hard-coding pixel widths. Also make the text's scrollbar a child of the text frame, not the top widget. | ||||
| * | Conditionalize definition of _CRT_SECURE_NO_DEPRECATE | Martin v. Löwis | 2006-11-21 | 2 | -0/+11 |
| | | | | | | and _CRT_NONSTDC_NO_DEPRECATE. Will backport. | ||||
| * | 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 |
| | | |||||
| * | Bug #1599782: Fix segfault on bsddb.db.DB().type(). | Neal Norwitz | 2006-11-21 | 3 | -2/+6 |
| | | | | | | | | | | 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. Will backport. | ||||
| * | Jython compatibility fix: if uu.decode() opened its output file, be sure to | Andrew M. Kuchling | 2006-11-20 | 1 | -0/+4 |
| | | | | | close it. | ||||
| * | Further markup fix. | Georg Brandl | 2006-11-20 | 1 | -1/+1 |
| | | |||||
| * | markup fix | George Yoshida | 2006-11-20 | 1 | -1/+1 |
| | | |||||
| * | Speed up function calls into the math module by using METH_O. | Neal Norwitz | 2006-11-19 | 2 | -63/+57 |
| | | | | | | There should be no functional changes. However, the error msgs are slightly different. Also verified that the module dict is not NULL on init. | ||||
| * | Patch #1070046: Marshal new-style objects like InstanceType | Martin v. Löwis | 2006-11-19 | 4 | -4/+33 |
| | | | | | in xmlrpclib. | ||||
| * | Add a test case of data w/ bytes > 127 | Andrew M. Kuchling | 2006-11-19 | 1 | -0/+3 |
| | | |||||
| * | Make cStringIO.truncate raise IOError for negative | Martin v. Löwis | 2006-11-19 | 3 | -1/+15 |
| | | | | | | arguments (even for -1). Fixes the last bit of #1359365. | ||||
| * | Patch [ 1586791 ] better error msgs for some TypeErrors | Georg Brandl | 2006-11-19 | 5 | -16/+27 |
| | | |||||
| * | Expand checking in test_sha | Andrew M. Kuchling | 2006-11-18 | 1 | -1/+15 |
| | | |||||
| * | Patch #1472877: Fix Tix subwidget name resolution. | Martin v. Löwis | 2006-11-18 | 2 | -1/+6 |
| | | | | | Will backport to 2.5. | ||||
| * | Patch #1594554: Always close a tkSimpleDialog on ok(), even | Martin v. Löwis | 2006-11-18 | 2 | -3/+7 |
| | | | | | | if an exception occurs. Will backport to 2.5. | ||||
| * | 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. Will backport to 2.5. | ||||
| * | Remove file-locking in MH.pack() method. | Andrew M. Kuchling | 2006-11-17 | 2 | -21/+22 |
| | | | | | | | | | | | | | | | | | | | This change looks massive but it's mostly a re-indenting after removing some try...finally blocks. Also adds a test case that does a pack() while the mailbox is locked; this test would have turned up bugs in the original code on some platforms. In both nmh and GNU Mailutils' implementation of MH-format mailboxes, no locking is done of individual message files when renaming them. The original mailbox.py code did do locking, which meant that message files had to be opened. This code was buggy on certain platforms (found through reading the code); there were code paths that closed the file object and then called _unlock_file() on it. Will backport to 25-maint once I see how the buildbots react to this patch. | ||||
| * | 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. | ||||
| * | Bug #1597824: return the registered function from atexit.register() | Georg Brandl | 2006-11-16 | 3 | -0/+22 |
| | | | | | to facilitate usage as a decorator. | ||||
| * | Bug #1597576: mention that the new base64 api has been introduced in py2.4. | Georg Brandl | 2006-11-16 | 1 | -1/+1 |
| | | |||||
| * | Bug #1594809: add a note to README regarding PYTHONPATH and make install. | Georg Brandl | 2006-11-15 | 1 | -0/+5 |
| | | |||||
| * | Fix typo. | Walter Dörwald | 2006-11-15 | 1 | -1/+1 |
| | | |||||
| * | Patch #1360200: Use unmangled_version RPM spec field to deal with | Martin v. Löwis | 2006-11-12 | 2 | -3/+7 |
| | | | | | | file name mangling. Will backport to 2.5. | ||||
| * | Patch #1359217: Ignore 2xx response before 150 response. | Martin v. Löwis | 2006-11-12 | 2 | -0/+14 |
| | | | | | Will backport to 2.5. | ||||
| * | Bug #1067760: Deprecate passing floats to file.seek. | Martin v. Löwis | 2006-11-12 | 3 | -4/+20 |
| | | |||||
| * | Patch #1355023: support whence argument for GzipFile.seek. | Martin v. Löwis | 2006-11-12 | 3 | -1/+19 |
| | | |||||
| * | Patch #1065257: Support passing open files as body in | Martin v. Löwis | 2006-11-12 | 4 | -3/+44 |
| | | | | | HTTPConnection.request(). | ||||
| * | Bug #1594758: wording improvement for dict.update() docs. | Georg Brandl | 2006-11-11 | 1 | -1/+2 |
| | | |||||
| * | Bug #1594742: wrong word in stringobject doc. | Georg Brandl | 2006-11-11 | 1 | -1/+1 |
| | | |||||
| * | [Feature request #1542920] Link to wsgi.org | Andrew M. Kuchling | 2006-11-10 | 1 | -1/+2 |
| | | |||||
| * | Reword entry | Andrew M. Kuchling | 2006-11-10 | 1 | -2/+2 |
| | | |||||
| * | 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). | ||||
| * | [Patch #1514543] mailbox (Maildir): avoid losing messages on name clash | Andrew M. Kuchling | 2006-11-09 | 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. Backport candidate. | ||||
| * | Replace C++ comment with C comment (fixes SF bug #1593525). | Walter Dörwald | 2006-11-09 | 1 | -1/+1 |
| | | |||||
| * | [Patch #1514544 by David Watson] use fsync() to ensure data is really on disk | Andrew M. Kuchling | 2006-11-09 | 2 | -7/+27 |
| | | |||||
| * | [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. Will backport to 25-maint. | ||||
| * | Patch #1592250: Add elidge argument to Tkinter.Text.search. | Martin v. Löwis | 2006-11-09 | 2 | -1/+4 |
| | | |||||
| * | Patch #838546: Make terminal become controlling in pty.fork(). | Martin v. Löwis | 2006-11-09 | 2 | -0/+6 |
| | | | | | Will backport to 2.5. | ||||
| * | More edits | Andrew M. Kuchling | 2006-11-08 | 1 | -10/+26 |
| | | |||||
| * | Add table of contents; this required fixing a few headings. Some more ↵ | Andrew M. Kuchling | 2006-11-08 | 1 | -17/+21 |
| | | | | | smalle edits. | ||||
| * | Add section on operator module; make a few edits | Andrew M. Kuchling | 2006-11-08 | 1 | -8/+38 |
| | | |||||
| * | Add section on the functional module | Andrew M. Kuchling | 2006-11-08 | 1 | -1/+144 |
| | | |||||
| * | Bug #1592533: rename variable in heapq doc example, to avoid shadowing | Georg Brandl | 2006-11-08 | 1 | -4/+4 |
| | | | | | "sorted". | ||||
| * | Patch #1592072: fix docs for return value of PyErr_CheckSignals. | Georg Brandl | 2006-11-08 | 1 | -1/+1 |
| | | |||||
| * | Patch #1351744: Add askyesnocancel helper for tkMessageBox. | Martin v. Löwis | 2006-11-08 | 2 | -0/+12 |
| | | |||||
| * | News entry for 52662. | Martin v. Löwis | 2006-11-08 | 1 | -0/+2 |
| | | |||||
| * | Correctly forward exception in instance_contains(). | Martin v. Löwis | 2006-11-08 | 2 | -4/+14 |
| | | | | | | Fixes #1591996. Patch contributed by Neal Norwitz. Will backport. | ||||
| * | Add missing word | Andrew M. Kuchling | 2006-11-07 | 1 | -1/+1 |
| | | |||||
