| Commit message (Expand) | Author | Age | Files | Lines |
* | Add Soc student | Andrew M. Kuchling | 2006-05-26 | 1 | -4/+5 |
|
|
* | Some Win64 pre-release in 2000 didn't support | Tim Peters | 2006-05-25 | 1 | -0/+4 |
|
|
* | Add entry; and fix a typo | Andrew M. Kuchling | 2006-05-25 | 1 | -1/+7 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 1 | -0/+6 |
|
|
* | patch #1493701: performance enhancements for struct module | Bob Ippolito | 2006-05-23 | 1 | -0/+2 |
|
|
* | revert #1493701 | Bob Ippolito | 2006-05-23 | 1 | -2/+0 |
|
|
* | Remove duplicate item | Andrew M. Kuchling | 2006-05-23 | 1 | -3/+0 |
|
|
* | Patch #1493701: performance enhancements for struct module. | Bob Ippolito | 2006-05-23 | 1 | -0/+2 |
|
|
* | Bug #1334662 / patch #1335972: int(string, base) wrong answers. | Tim Peters | 2006-05-23 | 2 | -0/+6 |
|
|
* | Update Misc/NEWS for gzip patch #1281707 | Bob Ippolito | 2006-05-23 | 1 | -2/+2 |
|
|
* | Update Misc/NEWS for gzip patch #1281707 | Bob Ippolito | 2006-05-23 | 1 | -0/+2 |
|
|
* | Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. | Richard Jones | 2006-05-23 | 1 | -0/+5 |
|
|
* | PyErr_NewException now accepts a tuple of base classes as its | Georg Brandl | 2006-05-23 | 1 | -0/+3 |
|
|
* | Merge from rjones-funccall branch. | Richard Jones | 2006-05-23 | 1 | -0/+3 |
|
|
* | Patch #1492356: Port to Windows CE (patch set 1). | Martin v. Löwis | 2006-05-22 | 2 | -0/+3 |
|
|
* | Bug/Patch #1481770: Use .so extension for shared libraries on HP-UX for ia64. | Neal Norwitz | 2006-05-19 | 2 | -0/+3 |
|
|
* | Bug #1462152: file() now checks more thoroughly for invalid mode | Georg Brandl | 2006-05-18 | 1 | -0/+4 |
|
|
* | Patch #1180296: improve locale string formatting functions | Georg Brandl | 2006-05-17 | 1 | -0/+4 |
|
|
* | Patch #1486962: Several bugs in the turtle Tk demo module were fixed | Georg Brandl | 2006-05-17 | 1 | -0/+3 |
|
|
* | Patch #1490224: set time.altzone correctly on Cygwin. | Georg Brandl | 2006-05-17 | 1 | -0/+2 |
|
|
* | Update for 'ImportWarning' | George Yoshida | 2006-05-16 | 1 | -3/+3 |
|
|
* | Patch #1435422: zlib's compress and decompress objects now have a | Georg Brandl | 2006-05-16 | 1 | -0/+3 |
|
|
* | [ 1488881 ] tarfile.py: support for file-objects and bz2 (cp. #1488634) | Georg Brandl | 2006-05-15 | 1 | -0/+3 |
|
|
* | Patch #1488312, Fix memory alignment problem on SPARC in unicode. Will backport | Neal Norwitz | 2006-05-15 | 2 | -0/+3 |
|
|
* | - Bug #1487966: Fix SystemError with conditional expression in assignment | Neal Norwitz | 2006-05-15 | 2 | -0/+3 |
|
|
* | Move items implemented after a2 into the new a3 section | Neal Norwitz | 2006-05-15 | 1 | -35/+61 |
|
|
* | Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV | Tim Peters | 2006-05-13 | 1 | -1/+5 |
|
|
* | Dynamically allocate path name buffer for Unicode | Martin v. Löwis | 2006-05-12 | 1 | -0/+3 |
|
|
* | SF patch #1473132: Improve docs for tp_clear and tp_traverse, | Tim Peters | 2006-05-12 | 2 | -0/+3 |
|
|
* | Change WindowsError to carry the Win32 error code in winerror, | Martin v. Löwis | 2006-05-11 | 1 | -0/+5 |
|
|
* | Patch #721464: pdb.Pdb instances can now be given explicit stdin and | Georg Brandl | 2006-05-10 | 1 | -0/+4 |
|
|
* | Patch #1484695: Update the tarfile module to version 0.8. This fixes | Georg Brandl | 2006-05-10 | 1 | -0/+4 |
|
|
* | Variant of patch #1478292. doctest.register_optionflag(name) | Tim Peters | 2006-05-10 | 1 | -1/+4 |
|
|
* | Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. | Martin v. Löwis | 2006-05-06 | 1 | -2/+2 |
|
|
* | Implement os.{chdir,rename,rmdir,remove} using Win32 directly. | Martin v. Löwis | 2006-05-04 | 1 | -0/+3 |
|
|
* | Patch #1475845: Raise IndentationError for unexpected indent. | Martin v. Löwis | 2006-05-04 | 1 | -0/+2 |
|
|
* | Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. | Georg Brandl | 2006-05-03 | 1 | -0/+3 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -2/+0 |
|
|
* | SF #1479181: split open() and file() from being aliases for each other. | Neal Norwitz | 2006-05-02 | 1 | -0/+2 |
|
|
* | Work around deadlock risk. Will backport. | Martin v. Löwis | 2006-05-01 | 1 | -0/+3 |
|
|
* | Patch #1472854: make the rlcompleter.Completer class usable on non- | Georg Brandl | 2006-04-30 | 1 | -0/+3 |
|
|
* | Patch #1470846: fix urllib2 ProxyBasicAuthHandler. | Georg Brandl | 2006-04-30 | 1 | -0/+2 |
|
|
* | Further changes for #1471883: Edit Misc/NEWS, and | Martin v. Löwis | 2006-04-29 | 1 | -0/+2 |
|
|
* | Added SVN access for Steven Bethard and Talin, for PEP updating. | David Goodger | 2006-04-27 | 1 | -0/+7 |
|
|
* | 2.5a2v2.5a2 | Anthony Baxter | 2006-04-27 | 1 | -1/+1 |
|
|
* | 2.5a2 | Anthony Baxter | 2006-04-27 | 1 | -1/+1 |
|
|
* | Fix build on MIPS for libffi. I haven't tested this yet because I | Hye-Shik Chang | 2006-04-26 | 1 | -0/+2 |
|
|
* | The result of SF patch #1471578: big-memory tests for strings, lists and | Thomas Wouters | 2006-04-26 | 1 | -0/+5 |
|
|
* | SF bug/patch #1433877: string parameter to ioctl not null terminated | Thomas Wouters | 2006-04-25 | 1 | -0/+1 |
|
|
* | Restore Walters name | Neal Norwitz | 2006-04-25 | 1 | -1/+1 |
|
|