| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Tim wins a bet. Don't use re. | Guido van Rossum | 2002-11-13 | 1 | -2/+2 |
|
|
* | Allow unknown keyword arguments to the Extension class, and warn about them. | Andrew M. Kuchling | 2002-11-13 | 1 | -1/+14 |
|
|
* | Add getstate and setstate implementation to concrete set classes. | Jeremy Hylton | 2002-11-13 | 2 | -1/+21 |
|
|
* | Integrate updates to the GNU info conversion. | Fred Drake | 2002-11-13 | 3 | -60/+85 |
|
|
* | - Committing the modified signature lines I've been using for a long | Fred Drake | 2002-11-13 | 1 | -3/+7 |
|
|
* | Document struct_time and the field names. | Fred Drake | 2002-11-13 | 1 | -14/+25 |
|
|
* | Add \funcline, \funclineni, and \methodlineni to the list of functions | Fred Drake | 2002-11-13 | 1 | -0/+3 |
|
|
* | Fix broken markup. | Fred Drake | 2002-11-13 | 1 | -1/+1 |
|
|
* | Remove some test code. | Jeremy Hylton | 2002-11-13 | 1 | -33/+0 |
|
|
* | Fix SF bug #637789: Handle Proxy-Connection header. | Jeremy Hylton | 2002-11-13 | 1 | -15/+25 |
|
|
* | Back out part of rev. 1.53, restoring the use of the string module. | Andrew M. Kuchling | 2002-11-13 | 1 | -4/+6 |
|
|
* | News about the logging module. | Guido van Rossum | 2002-11-13 | 1 | -0/+3 |
|
|
* | Get rid of #! lines, references to usage as __main__, README.txt, and | Guido van Rossum | 2002-11-13 | 3 | -36/+4 |
|
|
* | Adding Vinay Sajip's logging package. | Guido van Rossum | 2002-11-13 | 3 | -0/+2190 |
|
|
* | Typo: it's --> its | Fred Drake | 2002-11-13 | 1 | -1/+1 |
|
|
* | Update: Older versions of Python crashed when calling repr() | Fred Drake | 2002-11-13 | 1 | -3/+5 |
|
|
* | Improved clarity and thoroughness of docstring. | Raymond Hettinger | 2002-11-13 | 1 | -20/+41 |
|
|
* | Clarify that PyImport_AddModule() and PyImport_ExecCodeModule() don't | Fred Drake | 2002-11-13 | 1 | -3/+7 |
|
|
* | Normalize whitespace. | Fred Drake | 2002-11-13 | 1 | -61/+62 |
|
|
* | Fix typo in comment. | Fred Drake | 2002-11-13 | 1 | -2/+2 |
|
|
* | Update file | Andrew M. Kuchling | 2002-11-13 | 1 | -10/+14 |
|
|
* | Docstring typo fix | Andrew M. Kuchling | 2002-11-13 | 1 | -1/+1 |
|
|
* | Fill out the 'Porting' section | Andrew M. Kuchling | 2002-11-13 | 1 | -2/+62 |
|
|
* | The libsocket/libnsl problem is specific to IRIX 4. Confirmed by Tim Rice. | Martin v. Löwis | 2002-11-13 | 2 | -3/+3 |
|
|
* | Fix SF # 464405, freeze doesn't like DOS files on Linux | Neal Norwitz | 2002-11-12 | 1 | -2/+2 |
|
|
* | Clarified meaning of \w and \W with respect to the UNICODE and LOCALE flags. | Fred Drake | 2002-11-12 | 1 | -5/+5 |
|
|
* | SF # 627900, Bytecode copy bug in freeze | Neal Norwitz | 2002-11-12 | 1 | -1/+2 |
|
|
* | Fix SF # 635969, No error "not all arguments converted" | Neal Norwitz | 2002-11-12 | 3 | -2/+12 |
|
|
* | Handle the Content-Type header a little more appropriately: if it | Fred Drake | 2002-11-12 | 1 | -0/+3 |
|
|
* | SF patch 637176: list.sort crasher | Tim Peters | 2002-11-12 | 5 | -100/+78 |
|
|
* | Clarified documentation of tempnam(). | Fred Drake | 2002-11-12 | 1 | -0/+4 |
|
|
* | Update text to refer to 2.2.2 | Andrew M. Kuchling | 2002-11-12 | 1 | -5/+5 |
|
|
* | Remove extra word | Andrew M. Kuchling | 2002-11-12 | 1 | -3/+3 |
|
|
* | SF patch 629637: Add sample(population, k) method to the random module. | Raymond Hettinger | 2002-11-12 | 3 | -2/+78 |
|
|
* | delete reference to building on Minix, which will be unsupported in 2.3 | Skip Montanaro | 2002-11-12 | 1 | -2/+0 |
|
|
* | Use PyInt_AsLong instead of PyInt_AS_LONG after the call to | Walter Dörwald | 2002-11-12 | 1 | -1/+1 |
|
|
* | Don't define _XOPEN_SOURCE and _POSIX_C_SOURCE on FreeBSD 5.0. Fixes #636318. | Martin v. Löwis | 2002-11-12 | 3 | -44/+43 |
|
|
* | Forgot a paren in the MSVC + 64-bit + Intel case. | Tim Peters | 2002-11-11 | 1 | -1/+1 |
|
|
* | Added a blurb about the change to sys.version under MSVC. | Tim Peters | 2002-11-11 | 1 | -0/+5 |
|
|
* | Some help for SF 614770: MSVC 7.0 compiler support | Tim Peters | 2002-11-11 | 1 | -20/+33 |
|
|
* | Use new-style CHECK_TYPE to avoid modifying confdefs.h. Include sys/types.h | Martin v. Löwis | 2002-11-11 | 3 | -38/+19 |
|
|
* | Protect pyconfig.h from multiple inclusions. | Martin v. Löwis | 2002-11-11 | 3 | -1/+16 |
|
|
* | Do not define _XOPEN_SOURCE on OpenBSD 2.x and 3.[012]. Fixes #635034 | Martin v. Löwis | 2002-11-11 | 1 | -2/+25 |
|
|
* | Don't define _XOPEN_SOURCE on OpenBSD 2.x and 3.[012]. | Martin v. Löwis | 2002-11-11 | 2 | -5/+27 |
|
|
* | Check whether we can take the address of chown, link, and symlink. | Martin v. Löwis | 2002-11-11 | 3 | -13/+175 |
|
|
* | - Use imp to find appletrawmain.py in stead of hand-crafting the path | Jack Jansen | 2002-11-11 | 1 | -2/+5 |
|
|
* | - Building IDE is optional on waste being available, similar to building | Jack Jansen | 2002-11-11 | 1 | -21/+28 |
|
|
* | Make private functions static so we don't pollute the namespace | Neal Norwitz | 2002-11-10 | 2 | -2/+3 |
|
|
* | Allow both string and Unicode objects in levels. | Martin v. Löwis | 2002-11-09 | 1 | -2/+2 |
|
|
* | Don't try to convert the test filename to Unicode with -U. | Martin v. Löwis | 2002-11-09 | 1 | -1/+6 |
|
|