| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | IDLE support for PEP 263. | Martin v. Löwis | 2002-08-05 | 1 | -0/+5 |
|
|
* | Moved bgenlocations to the Mac/Lib directory. Not perfect, but better than | Jack Jansen | 2002-08-05 | 2 | -13/+61 |
|
|
* | Patch #590913: PEP 263 support. | Martin v. Löwis | 2002-08-05 | 2 | -1/+188 |
|
|
* | Use ascii_letters to avoid UnicodeErrors. | Martin v. Löwis | 2002-08-05 | 1 | -1/+4 |
|
|
* | Add a small description of PEP 263. | Guido van Rossum | 2002-08-05 | 1 | -1/+3 |
|
|
* | Added a cast to shut up a compiler warning. | Jack Jansen | 2002-08-05 | 1 | -1/+1 |
|
|
* | Renamed Py_Main to PyMac_Main as it has a different signature than the "norma... | Jack Jansen | 2002-08-05 | 1 | -4/+4 |
|
|
* | Added _IBCarbon module. | Jack Jansen | 2002-08-05 | 4 | -0/+5 |
|
|
* | SF 582071 clarified the .split() method's docstring to note that sep=None | Raymond Hettinger | 2002-08-05 | 1 | -2/+2 |
|
|
* | Note that True and False are pickable objects | Raymond Hettinger | 2002-08-05 | 1 | -1/+1 |
|
|
* | GvR provided solution to the socket rebinding timeout problem. | Kurt B. Kaiser | 2002-08-05 | 3 | -7/+6 |
|
|
* | Add 1 to lineno in deprecation warning. Fixes #590888. | Martin v. Löwis | 2002-08-05 | 1 | -1/+3 |
|
|
* | Test whether a Cyrillic text correctly appears in a Unicode literal. | Martin v. Löwis | 2002-08-05 | 1 | -0/+2 |
|
|
* | We don't really need the name of the test in the "test skipped" msg, and | Tim Peters | 2002-08-04 | 1 | -1/+1 |
|
|
* | Oops! Forgot the closing paren. | Tim Peters | 2002-08-04 | 1 | -1/+1 |
|
|
* | Finally got around to figuring out and documenting why this test fails | Tim Peters | 2002-08-04 | 1 | -2/+10 |
|
|
* | Build the _IBCarbon module. | Jack Jansen | 2002-08-04 | 1 | -0/+2 |
|
|
* | The definitions for IBCarbonRuntime.h | Jack Jansen | 2002-08-04 | 1 | -0/+5 |
|
|
* | Updated to something that works on my system, and regenerated module. | Jack Jansen | 2002-08-04 | 2 | -12/+7 |
|
|
* | Specify pathnames in a way that works on both OS9 and OSX. | Jack Jansen | 2002-08-04 | 1 | -3/+3 |
|
|
* | Use universal newline input when scanning header files. | Jack Jansen | 2002-08-04 | 1 | -3/+3 |
|
|
* | Donovan Preston's interface to IBCarbon, allowing you to use Interface | Jack Jansen | 2002-08-04 | 3 | -0/+342 |
|
|
* | Changes to the OSX section: | Jack Jansen | 2002-08-04 | 1 | -6/+13 |
|
|
* | Use the -n option of ln in stead of -h, as it also works with other ln's | Jack Jansen | 2002-08-04 | 1 | -9/+9 |
|
|