summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* SF bug #592645 fix memory leak in socket.getaddrinfoNeal Norwitz2002-08-091-0/+2
* Update the text on the Expat module and library.Fred Drake2002-08-091-17/+9
* Major speedup for new-style class creation. Turns out there was someGuido van Rossum2002-08-091-0/+22
* Moved inplace add and multiply methods from UserString to MutableString.Raymond Hettinger2002-08-094-11/+19
* Moved special case for tuples from iterobject.c toRaymond Hettinger2002-08-092-25/+123
* Revised the test suite for 'contains' to use the test() function argumentRaymond Hettinger2002-08-091-9/+9
* By popular demand the frameworkinstall target now installs everything:Jack Jansen2002-08-092-30/+51
* Significant speedup in new-style object creation: in slot_tp_new(),Guido van Rossum2002-08-081-1/+8
* Use hex escape for non-ascii chars, now that the parser wants that.Jack Jansen2002-08-081-13/+13
* A modest speedup of object deallocation. call_finalizer() did ratherGuido van Rossum2002-08-082-66/+71
* The other half of the patches added to SF patch 555085 by A IGuido van Rossum2002-08-081-0/+2
* Clean up some docstrings. Some docstrings didn't show their returnGuido van Rossum2002-08-081-10/+11
* testSendAll(): loop until all data is read; this was necessary atGuido van Rossum2002-08-081-3/+3
* Whitespace normalization.Tim Peters2002-08-0883-5828/+5817
* Delete junk attributes left behind by _socketobject class construction.Tim Peters2002-08-081-0/+1
* Patch #588561: Cygwin _hotshot patchJason Tishler2002-08-081-2/+4
* The _socketobject class has no need for a __del__ method: all it did wasGuido van Rossum2002-08-081-10/+6
* OK, one more hack: speed up the case of readline() in unbuffered mode.Guido van Rossum2002-08-081-0/+11
* Another refactoring of read() and readline(), this time based on theGuido van Rossum2002-08-081-66/+88
* Extend __all__ with the exports list of the _ssl module.Guido van Rossum2002-08-081-1/+4
* Oops, stupid tabs. Sorry again.Guido van Rossum2002-08-081-3/+3
* Another refactoring. Changed 'socket' from being a factory functionGuido van Rossum2002-08-081-26/+49
* Add module-wide "__metaclass__ = type", as requested by Jim Fulton.Steve Purcell2002-08-081-1/+4
* Added info about highwater heap-memory use for the sortperf.py tests; + aTim Peters2002-08-081-3/+31
* PyList_Reverse(): This was leaking a reference to Py_None on every call.Tim Peters2002-08-081-1/+4
* Major restructuring of _fileobject. Hopefully several things now workGuido van Rossum2002-08-081-61/+111
* Replace docstrings on test functions witrh comments -- then unittestGuido van Rossum2002-08-081-31/+50
* Added info about the right way to leave the body of a trashcan-protectedTim Peters2002-08-071-0/+5
* Fix a subtle bug in the trashcan code I added yesterday toGuido van Rossum2002-08-071-2/+3
* GvR pointed out that only enclosing function bodies are part of nested scopes.Raymond Hettinger2002-08-071-5/+5
* 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