| Commit message (Expand) | Author | Age | Files | Lines |
* | Get rid of string functions, except maketrans() (which is *not* | Guido van Rossum | 2000-12-15 | 1 | -42/+45 |
|
|
* | Add test case for error message raised by bad % format character | Andrew M. Kuchling | 2000-12-15 | 1 | -0/+25 |
|
|
* | [ Patch #102852 ] Make % error a bit more informative by indicates the | Andrew M. Kuchling | 2000-12-15 | 2 | -4/+6 |
|
|
* | Grant Griffin <grant.griffin@honeywell.com>: | Fred Drake | 2000-12-15 | 1 | -2/+3 |
|
|
* | Fix typo | Andrew M. Kuchling | 2000-12-15 | 1 | -1/+1 |
|
|
* | Document napms() | Andrew M. Kuchling | 2000-12-15 | 1 | -0/+5 |
|
|
* | [Patch #102827] Fix for PR#119558, avoiding core dumps by checking for | Andrew M. Kuchling | 2000-12-15 | 1 | -7/+16 |
|
|
* | Wrapper for napms() function, contributed by Thomas Gellekum <tg@FreeBSD.org> | Andrew M. Kuchling | 2000-12-15 | 1 | -1/+50 |
|
|
* | Curses demos contributed by Thomas Gellekum <tg@FreeBSD.org>. | Andrew M. Kuchling | 2000-12-15 | 4 | -1/+541 |
|
|
* | Various tweaks. It now returns the exact same files as Matthias' tool 95% of ... | Jack Jansen | 2000-12-14 | 1 | -28/+55 |
|
|
* | Oops, interaction() returned a single value in stead of a tuple (I thought th... | Jack Jansen | 2000-12-14 | 1 | -3/+2 |
|
|
* | First stab at a script that mimicks Matthias Neerachers tool used to build GUSI. | Jack Jansen | 2000-12-14 | 1 | -0/+164 |
|
|
* | Set autodispose only if RefCon isn't set yet on the window. This way we don't... | Jack Jansen | 2000-12-14 | 2 | -6/+117 |
|
|
* | Fix bit rot: use sock.connect((host, port)) and allow 2nd cmd line | Guido van Rossum | 2000-12-14 | 1 | -3/+3 |
|
|
* | For the title page, insert the package version number before the date. | Fred Drake | 2000-12-14 | 1 | -3/+3 |
|
|
* | Update the test suite to cover more ground. | Fred Drake | 2000-12-14 | 2 | -0/+9 |
|
|
* | Lots of small bug fixes and DOM API conformance improvements: | Fred Drake | 2000-12-14 | 1 | -49/+145 |
|
|
* | Adjust PullDOM to use a DOMImplementation instance to create new Document | Fred Drake | 2000-12-14 | 1 | -26/+37 |
|
|
* | Test for NULL returned from PyObject_NEW(). | Guido van Rossum | 2000-12-14 | 1 | -0/+3 |
|
|
* | Test for NULL returned from PyObject_NEW(). | Guido van Rossum | 2000-12-14 | 1 | -0/+3 |
|
|
* | Update information on the locking() function, added the needed constants. | Fred Drake | 2000-12-14 | 1 | -2/+26 |
|
|
* | Add long-overdue docstrings to dict methods. | Tim Peters | 2000-12-13 | 1 | -11/+53 |
|
|
* | Finish a sentence that was left half-written! | Fred Drake | 2000-12-13 | 1 | -16/+20 |
|
|
* | Use METH_VARARGS instead of "1" in list method table. | Tim Peters | 2000-12-13 | 1 | -9/+9 |
|
|
* | When raising KeyError, provide the key value that failed. | Fred Drake | 2000-12-13 | 1 | -4/+4 |
|
|
* | Changing allow_reuse_address's default value, and documenting it. | Moshe Zadka | 2000-12-13 | 2 | -1/+6 |
|
|
* | Untabify! (Barry, this is gonna cost you a bottle of wine! ;) | Fred Drake | 2000-12-13 | 1 | -105/+105 |
|
|
* | Typo repair in comments. Fell for GregS's .popitem() poke. | Tim Peters | 2000-12-13 | 1 | -2/+6 |
|
|
* | Added "stub" documentation for xml.dom.pulldom for Paul to fill out with | Fred Drake | 2000-12-13 | 3 | -0/+63 |
|
|
* | Get rid of string module and string exceptions. | Guido van Rossum | 2000-12-13 | 1 | -7/+10 |
|
|
* | Added descriptions of the defined exceptions and their mapping to the | Fred Drake | 2000-12-13 | 1 | -0/+129 |
|
|
* | Set CXX even when --with-cxx is not specified. Closes bug 14782. | Martin v. Löwis | 2000-12-13 | 1 | -322/+419 |
|
|
* | Set CXX even when --with-cxx is not specified. Closes bug #124782 | Martin v. Löwis | 2000-12-13 | 1 | -0/+20 |
|
|
* | Add code to DOMException to ensure it cannot be instantiated directly, | Fred Drake | 2000-12-13 | 1 | -1/+8 |
|
|
* | Add standard DOM exception hierarchy. | Martin v. Löwis | 2000-12-13 | 1 | -0/+68 |
|
|
* | Document --with-cxx. | Martin v. Löwis | 2000-12-13 | 1 | -0/+9 |
|
|
* | Check in README file and one demo program | Andrew M. Kuchling | 2000-12-13 | 2 | -0/+226 |
|
|
* | Bring comments up to date (e.g., they still said the table had to be | Tim Peters | 2000-12-13 | 1 | -23/+40 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 36 | -99/+101 |
|
|
* | Change the file's indentation from tabs to 4 spaces per level. | Barry Warsaw | 2000-12-12 | 1 | -151/+163 |
|
|
* | Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno | Barry Warsaw | 2000-12-12 | 1 | -13/+16 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 55 | -519/+520 |
|
|
* | The Mac C library (MSL from CodeWarrior 6) and I/O library (GUSI | Jack Jansen | 2000-12-12 | 1 | -2/+2 |
|
|
* | The ".pth" code knew about the layout of Python trees on unix and | Jack Jansen | 2000-12-12 | 1 | -0/+2 |
|
|
* | Use c2pstr() in stead of Pstring() to convert C-strings to | Jack Jansen | 2000-12-12 | 1 | -3/+4 |
|
|
* | Optionally weed out duplicate prototypes for the same function (which | Jack Jansen | 2000-12-12 | 3 | -3/+11 |
|
|
* | Adapted to new standard for initmodule() routine: don't call | Jack Jansen | 2000-12-12 | 1 | -2/+1 |
|
|
* | Various new standard types. | Jack Jansen | 2000-12-12 | 1 | -1/+16 |
|
|
* | Added support for generating a single module from multiple .h files. | Jack Jansen | 2000-12-12 | 1 | -3/+20 |
|
|
* | Refer to the sourceforge site for gusi downloads. | Jack Jansen | 2000-12-12 | 1 | -2/+2 |
|
|