| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix PEP 263 code --without-unicode. Fixes #591943. | Martin v. Löwis | 2002-08-07 | 2 | -0/+28 |
|
|
* | Fix markup errors. | Steve Holden | 2002-08-07 | 1 | -3/+3 |
|
|
* | Expanded the unittests for the new width sensitive PyUnicode_Contains(). | Raymond Hettinger | 2002-08-06 | 1 | -0/+6 |
|
|
* | Document handling of raw-unicode-escapes. Closes SF bug 587087. | Raymond Hettinger | 2002-08-06 | 1 | -0/+8 |
|
|
* | internal_connect(): Windows. When sock_timeout > 0 and connect() yields | Tim Peters | 2002-08-06 | 1 | -6/+14 |
|
|
* | Added a note about the inability to specify a pathname to a non-existing | Jack Jansen | 2002-08-06 | 1 | -1/+7 |
|
|
* | Changed a sentence that confused some people. | Jack Jansen | 2002-08-06 | 1 | -2/+2 |
|
|
* | Make more functions static | Neal Norwitz | 2002-08-06 | 1 | -2/+2 |
|
|
* | Make readahead functions static | Neal Norwitz | 2002-08-06 | 1 | -5/+8 |
|
|
* | Fix SF bug 574207 (chained __slots__ dealloc segfault). | Guido van Rossum | 2002-08-06 | 1 | -10/+52 |
|
|
* | Fix the markup so it doesn't break formatting. | Fred Drake | 2002-08-06 | 1 | -4/+4 |
|
|
* | Add testcase for SF bug 574207 (chained __slots__ dealloc segfault). | Guido van Rossum | 2002-08-06 | 1 | -0/+14 |
|
|
* | Added references to the email package. | Fred Drake | 2002-08-06 | 3 | -2/+11 |
|
|
* | Added a test for PyUnicode_Contains() taking into account the width of | Barry Warsaw | 2002-08-06 | 1 | -0/+1 |
|
|
* | PyUnicode_Contains(): The memcmp() call didn't take into account the | Barry Warsaw | 2002-08-06 | 1 | -1/+1 |
|
|
* | get rid of GETNAMEV macro - use GETITEM directly | Skip Montanaro | 2002-08-06 | 1 | -12/+11 |
|
|
* | Add a coding cookie, because of the møøse quote. | Guido van Rossum | 2002-08-06 | 1 | -0/+1 |
|
|
* | Update the URL for getting zlib, and update the minimal required | Guido van Rossum | 2002-08-06 | 1 | -4/+4 |
|
|
* | Bump the LOOPS count. 50,000 iterations takes about 5 seconds on my | Guido van Rossum | 2002-08-06 | 1 | -1/+1 |
|
|
* | Add some fine points: METH_KEYWORDS implies METH_VARARGS, and ob_size | Guido van Rossum | 2002-08-06 | 1 | -6/+10 |
|
|
* | Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py. | Guido van Rossum | 2002-08-06 | 3 | -2/+7 |
|
|
* | Remove mention of deprecated xreadlines method. | Guido van Rossum | 2002-08-06 | 2 | -3/+3 |
|
|
* | Describe new "str1 in str2" behavior. | Barry Warsaw | 2002-08-06 | 1 | -0/+4 |
|
|
* | Document file.next(). Mark xreadlines obsolete (both method and | Guido van Rossum | 2002-08-06 | 2 | -9/+26 |
|
|
* | Committing patch #591250 which provides "str1 in str2" when str1 is a | Barry Warsaw | 2002-08-06 | 8 | -99/+140 |
|
|
* | Files are now their own iterator. The xreadlines method and module | Guido van Rossum | 2002-08-06 | 1 | -0/+12 |
|
|
* | Add comment about os.path.walk()'s behavior with symbolic links. | Steve Holden | 2002-08-06 | 1 | -0/+5 |
|
|
* | Add next and __iter__ to the list of file methods that should raise | Guido van Rossum | 2002-08-06 | 1 | -1/+3 |
|
|
* | SF patch 580331 by Oren Tirosh: make file objects their own iterator. | Guido van Rossum | 2002-08-06 | 2 | -34/+136 |
|
|
* | In the altbininstall target, which is the first subtarget for "make install", | Jack Jansen | 2002-08-06 | 1 | -1/+7 |
|
|
* | Patch #567296 by Pim Buurman, slightly modified by me so it can be disabled | Jack Jansen | 2002-08-06 | 1 | -2/+24 |
|
|
* | Wrapper around _IBCarbon. | Jack Jansen | 2002-08-06 | 1 | -0/+1 |
|
|
* | Mention list.sort() | Andrew M. Kuchling | 2002-08-06 | 1 | -8/+89 |
|
|
* | SF patch #591305 Documentation err in bytecode defs | Neal Norwitz | 2002-08-05 | 1 | -1/+1 |
|
|
* | We only need to check for StopIteration here. | Fred Drake | 2002-08-05 | 1 | -1/+1 |
|
|
* | Patch by Ronald Oussoren: if there's a .lproj in the extras list also | Jack Jansen | 2002-08-05 | 1 | -1/+10 |
|
|
* | In copy() don't try to obtain an FSSpec until we know the destination | Jack Jansen | 2002-08-05 | 1 | -6/+12 |
|
|
* | Be a lot less verbose by default. | Jack Jansen | 2002-08-05 | 2 | -6/+7 |
|
|
* | Better output for errors, and some progress reports. | Jack Jansen | 2002-08-05 | 1 | -1/+12 |
|
|
* | Fixed the last two bgen-based modules to be buildable on OSX. | Jack Jansen | 2002-08-05 | 2 | -5/+6 |
|
|
* | Initial prototype of framer: a tool to build the frame for extension modules. | Jeremy Hylton | 2002-08-05 | 12 | -0/+915 |
|
|
* | Remove function definition from cStringIO.h. | Jeremy Hylton | 2002-08-05 | 1 | -23/+4 |
|
|
* | Since the errno module is needed by os._execvpe(), and that is used by the | Fred Drake | 2002-08-05 | 2 | -3/+1 |
|
|
* | SF patch 590294: os._execvpe security fix (Zack Weinberg). | Guido van Rossum | 2002-08-05 | 1 | -0/+1 |
|
|
* | SF patch 590294: os._execvpe security fix (Zack Weinberg). | Guido van Rossum | 2002-08-05 | 1 | -21/+6 |
|
|
* | Enable building of Carbon toolbox modules with unix-Python. | Jack Jansen | 2002-08-05 | 26 | -58/+26 |
|
|
* | Got rid of staticforward. | Jack Jansen | 2002-08-05 | 4 | -11/+11 |
|
|
* | This can now run under unix-Python too. You have to pass the folder | Jack Jansen | 2002-08-05 | 1 | -2/+6 |
|
|
* | Fixed to run better in unix-Python, and to cater for bgenlocations | Jack Jansen | 2002-08-05 | 1 | -3/+7 |
|
|
* | Typo: "now" --> "the new" | Fred Drake | 2002-08-05 | 1 | -4/+4 |
|
|