| Commit message (Expand) | Author | Age | Files | Lines |
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 1 | -0/+16 |
|
|
* | Back in June in revision 1.98 Steve (accidentally, presumably) wiped | Michael W. Hudson | 2003-03-05 | 1 | -29/+74 |
|
|
* | Weaken recommendation of Friedl book; fix reference | Andrew M. Kuchling | 2003-03-04 | 1 | -4/+4 |
|
|
* | [bug #692016] update description of {m,n} modifier; you can omit the lower bound | Andrew M. Kuchling | 2003-03-04 | 1 | -3/+4 |
|
|
* | [bug #696771] Remove misleading parenthetical aside | Andrew M. Kuchling | 2003-03-04 | 1 | -2/+0 |
|
|
* | Patch #683592 revisited, after discussions with MvL: | Just van Rossum | 2003-03-03 | 1 | -2/+2 |
|
|
* | Fix bug | Michael W. Hudson | 2003-03-03 | 1 | -7/+54 |
|
|
* | - New function sys.exc_clear() clears the current exception. This is | Guido van Rossum | 2003-03-01 | 1 | -0/+20 |
|
|
* | Fix SF bug #691276, shutil.copytree documentation bug | Neal Norwitz | 2003-02-23 | 1 | -1/+4 |
|
|
* | User requested changes to the itertools module. | Raymond Hettinger | 2003-02-23 | 1 | -40/+52 |
|
|
* | I'm am the PyPy sprint waiting for a Grand Renaming so I killed a few | Michael W. Hudson | 2003-02-21 | 1 | -2/+2 |
|
|
* | Add some minimal doc for get_completer added for patch 676342 | Neal Norwitz | 2003-02-21 | 1 | -0/+5 |
|
|
* | Fill in missing table entries. | Raymond Hettinger | 2003-02-21 | 1 | -1/+5 |
|
|
* | SF bug #685775: turtle circle() documentation error | Raymond Hettinger | 2003-02-21 | 1 | -4/+5 |
|
|
* | Markup and nits. | Raymond Hettinger | 2003-02-21 | 1 | -12/+11 |
|
|
* | Add some notes about HIGHEST_PROTOCOL. | Neal Norwitz | 2003-02-21 | 1 | -4/+15 |
|
|
* | SF patch #687683, Patches to logging (updates from Vinay) | Neal Norwitz | 2003-02-18 | 1 | -10/+11 |
|
|
* | Fix SF bug #687655, String formatting conversions misleading | Neal Norwitz | 2003-02-17 | 1 | -1/+1 |
|
|
* | Migrate definitions of several platform-dependent path-related variables | Skip Montanaro | 2003-02-14 | 1 | -0/+7 |
|
|
* | extsep description: | Fred Drake | 2003-02-14 | 1 | -2/+3 |
|
|
* | add missing description of os.extsep | Skip Montanaro | 2003-02-14 | 1 | -0/+5 |
|
|
* | SF bug #663701: sets module review | Raymond Hettinger | 2003-02-14 | 1 | -4/+4 |
|
|
* | SF bug #663701. The caret wasn't printing well in the PDF documentation. | Raymond Hettinger | 2003-02-14 | 1 | -1/+1 |
|
|
* | Try to doc the new pickle details being implemented as part of PEP 307. | Neal Norwitz | 2003-02-13 | 1 | -7/+63 |
|
|
* | Cleanup from patch #683257: | Neal Norwitz | 2003-02-12 | 1 | -0/+13 |
|
|
* | Unparenting BZ2File, as discussed in SF patch #661796. | Gustavo Niemeyer | 2003-02-11 | 1 | -2/+0 |
|
|
* | Fix so it compiles at least. | Michael W. Hudson | 2003-02-11 | 1 | -1/+1 |
|
|
* | Remove erroneous period. | Michael W. Hudson | 2003-02-10 | 1 | -1/+1 |
|
|
* | C Code: | Raymond Hettinger | 2003-02-09 | 1 | -66/+84 |
|
|
* | Comparison for timedelta, time, date and datetime objects: __eq__ and | Tim Peters | 2003-02-07 | 1 | -1/+19 |
|
|
* | SF bug #681003: itertools issues | Raymond Hettinger | 2003-02-07 | 1 | -0/+4 |
|
|
* | Fix SF bug #675259, os.environ leaks under FreeBSD and Mac OS X | Neal Norwitz | 2003-02-07 | 1 | -1/+7 |
|
|
* | Update doc to reflect code changes for obsoleting use_statcache parameter | Neal Norwitz | 2003-02-06 | 1 | -8/+3 |
|
|
* | Typo fixes | Andrew M. Kuchling | 2003-02-06 | 1 | -2/+2 |
|
|
* | Fix description of filterwarnings() parameters (error noted by Richard Jones at | Andrew M. Kuchling | 2003-02-06 | 1 | -4/+5 |
|
|
* | Provide version changed info | Neal Norwitz | 2003-02-06 | 1 | -0/+1 |
|
|
* | Updated version of [ 558544 ] cmd.py: add instance-specific stdin/out | Anthony Baxter | 2003-02-06 | 1 | -5/+11 |
|
|
* | Markup fixes; in particular, the tables are now reasonable width | Andrew M. Kuchling | 2003-02-05 | 1 | -104/+117 |
|
|
* | supports_unicode_filenames was not in the right location. | Fred Drake | 2003-02-04 | 1 | -7/+8 |
|
|
* | Update to better reflect the usage of struct_time instances throughout; | Fred Drake | 2003-02-04 | 1 | -24/+28 |
|
|
* | Bug #678077: Suggest alternative to os.getlogin() | Andrew M. Kuchling | 2003-02-03 | 1 | -1/+3 |
|
|
* | Move itertools module from the sandbox and into production. | Raymond Hettinger | 2003-02-01 | 2 | -0/+326 |
|
|
* | Change the treatment of positions returned by PEP293 | Walter Dörwald | 2003-01-31 | 2 | -6/+17 |
|
|
* | SF bug #671447: StringIO doc doesn't say it's sometimes read-only. | Raymond Hettinger | 2003-01-31 | 1 | -0/+5 |
|
|
* | Fix markup error. | Fred Drake | 2003-01-30 | 1 | -1/+1 |
|
|
* | Author markup: Andrew got to it first | Raymond Hettinger | 2003-01-30 | 1 | -1/+0 |
|
|
* | Move a footnote to the end of the sentence, so the note mark won't | Fred Drake | 2003-01-29 | 1 | -3/+4 |
|
|
* | More markup changes for consistency. | Fred Drake | 2003-01-28 | 1 | -14/+14 |
|
|
* | Various minor markup adjustments. | Fred Drake | 2003-01-28 | 1 | -16/+25 |
|
|
* | Adjust some of Skip's latest changes slightly; these really are things | Fred Drake | 2003-01-27 | 1 | -5/+13 |
|
|