summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Add -E and -tt options to the python invocations, as for the Unix tests.Guido van Rossum2002-08-071-2/+2
* Replace tabs with spaces. (Sorry!)Guido van Rossum2002-08-071-3/+3
* Tighten the unbuffered readline test to distinguish between the two lines.Guido van Rossum2002-08-071-4/+4
* Simplify heapreplace() -- there's no need for an explicit test forGuido van Rossum2002-08-071-7/+4
* Document that heappop() and heapreplace() raise IndexError if the heapGuido van Rossum2002-08-071-1/+2
* Apply character{} markup.Raymond Hettinger2002-08-071-16/+17
* Replace abort with Py_FatalError.Martin v. Löwis2002-08-072-2/+2
* Described responsibilty of weakly referenced extension types to initializeRaymond Hettinger2002-08-071-2/+23
* Describe nested scopes in the tutorial. Closes SF bug 500704.Raymond Hettinger2002-08-071-6/+11
* Oops. I accidentally commented out some tests.Guido van Rossum2002-08-071-4/+4
* Regenerated with OSA class inheritance and fix for non-ascii chars.Jack Jansen2002-08-0742-818/+2217
* Fixed incorrect logic in determining whether we should initializeJack Jansen2002-08-071-2/+1
* Documented os.fsync and os.fdatasync. Closes SF bug 584695.Raymond Hettinger2002-08-071-0/+11
* "Unbuffered" mode of class _fileobject wasn't actually unbuffered,Guido van Rossum2002-08-072-8/+40
* - If an OSA identifier is a Python reserved word we now append an _Jack Jansen2002-08-071-8/+10
* Clarify that the bool instances are acceptable return values fromFred Drake2002-08-071-4/+5
* Use Py_FatalError instead of abort.Martin v. Löwis2002-08-072-4/+6
* Don't be over-enthusiastic with the ascii() calls: we don't need it ifJack Jansen2002-08-071-19/+19
* Donovan Preston's patch #538395, with some mods by me.Jack Jansen2002-08-074-50/+183
* Quote the arguments, they may contain strings.Jack Jansen2002-08-071-1/+1
* Fix up some more markup problems.Fred Drake2002-08-071-8/+9
* Change the markup a bit more; the parameter was not marked as \var in theFred Drake2002-08-071-4/+8
* Fix PEP 263 code --without-unicode. Fixes #591943.Martin v. Löwis2002-08-072-0/+28
* Fix markup errors.Steve Holden2002-08-071-3/+3
* Expanded the unittests for the new width sensitive PyUnicode_Contains().Raymond Hettinger2002-08-061-0/+6
* Document handling of raw-unicode-escapes. Closes SF bug 587087.Raymond Hettinger2002-08-061-0/+8
* internal_connect(): Windows. When sock_timeout > 0 and connect() yieldsTim Peters2002-08-061-6/+14
* Added a note about the inability to specify a pathname to a non-existingJack Jansen2002-08-061-1/+7
* Changed a sentence that confused some people.Jack Jansen2002-08-061-2/+2
* Make more functions staticNeal Norwitz2002-08-061-2/+2
* Make readahead functions staticNeal Norwitz2002-08-061-5/+8
* Fix SF bug 574207 (chained __slots__ dealloc segfault).Guido van Rossum2002-08-061-10/+52
* Fix the markup so it doesn't break formatting.Fred Drake2002-08-061-4/+4
* Add testcase for SF bug 574207 (chained __slots__ dealloc segfault).Guido van Rossum2002-08-061-0/+14
* Added references to the email package.Fred Drake2002-08-063-2/+11
* Added a test for PyUnicode_Contains() taking into account the width ofBarry Warsaw2002-08-061-0/+1
* PyUnicode_Contains(): The memcmp() call didn't take into account theBarry Warsaw2002-08-061-1/+1
* get rid of GETNAMEV macro - use GETITEM directlySkip Montanaro2002-08-061-12/+11
* Add a coding cookie, because of the møøse quote.Guido van Rossum2002-08-061-0/+1
* Update the URL for getting zlib, and update the minimal requiredGuido van Rossum2002-08-061-4/+4
* Bump the LOOPS count. 50,000 iterations takes about 5 seconds on myGuido van Rossum2002-08-061-1/+1
* Add some fine points: METH_KEYWORDS implies METH_VARARGS, and ob_sizeGuido van Rossum2002-08-061-6/+10
* Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.Guido van Rossum2002-08-063-2/+7
* Remove mention of deprecated xreadlines method.Guido van Rossum2002-08-062-3/+3
* Describe new "str1 in str2" behavior.Barry Warsaw2002-08-061-0/+4
* Document file.next(). Mark xreadlines obsolete (both method andGuido van Rossum2002-08-062-9/+26
* Committing patch #591250 which provides "str1 in str2" when str1 is aBarry Warsaw2002-08-068-99/+140
* Files are now their own iterator. The xreadlines method and moduleGuido van Rossum2002-08-061-0/+12
* Add comment about os.path.walk()'s behavior with symbolic links.Steve Holden2002-08-061-0/+5
* Add next and __iter__ to the list of file methods that should raiseGuido van Rossum2002-08-061-1/+3