summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Add encoding declaration.Martin v. Löwis2002-08-042-1/+2
* Add encoding declaration.Martin v. Löwis2002-08-042-0/+2
* I don't know what's going on with this test, but the last change fromTim Peters2002-08-041-1/+1
* - comment improvementAndrew MacIntyre2002-08-041-1/+25
* add parameter missing following Jeremy's compiler class refactoringAndrew MacIntyre2002-08-041-1/+1
* _siftup(): __le__ is now the only comparison operator used on arrayTim Peters2002-08-031-1/+1
* revert to version 1.2Piers Lauder2002-08-031-5/+6
* Added new heapreplace(heap, item) function, to pop (and return) theTim Peters2002-08-032-3/+20
* Large code rearrangement to use better algorithms, in the sense of needingTim Peters2002-08-031-39/+79
* Remove cut 'n paste silliness.Tim Peters2002-08-031-2/+0
* Minor fiddling, including a simple class to implement a heap iteratorTim Peters2002-08-032-10/+23
* Augment credits.Guido van Rossum2002-08-021-1/+1
* Hmm! I thought I checked this in before! Oh well.Tim Peters2002-08-022-10/+48
* Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there'sGuido van Rossum2002-08-021-0/+2
* heappop(): Added comments; simplified and sped the code.Tim Peters2002-08-021-21/+19
* heappop(): Use "while True" instead of "while 1".Tim Peters2002-08-021-1/+1
* check_invariant(): Use the same child->parent "formula" used by heapq.py.Tim Peters2002-08-021-2/+2
* Don't use true division where int division was intended. For that matter,Tim Peters2002-08-022-2/+2
* Adding the heap queue algorithm, per discussion in python-dev lastGuido van Rossum2002-08-021-0/+48
* catch the situation where Berkeley DB is used to emulate dbm(3) librarySkip Montanaro2002-08-021-3/+24
* regression test for the whichdb moduleSkip Montanaro2002-08-021-0/+63
* Add Kevin O'Connor, author of the heapq code.Guido van Rossum2002-08-021-0/+2
* Adding the heap queue algorithm, per discussion in python-dev lastGuido van Rossum2002-08-021-0/+176
* testGetServByName shouldn't check for getservbyname - the socket moduleSkip Montanaro2002-08-021-18/+17
* New test %sort. This takes a sorted list, picks 1% of the list positionsTim Peters2002-08-021-1/+7
* modify testGetServByName so it tries a few different protocols. In this daySkip Montanaro2002-08-021-5/+17
* Fix for SF bug 570678 (can't flush read-only file on Mac OS X).Guido van Rossum2002-08-011-1/+0
* SF patch 588728 (Nathan Srebro).Guido van Rossum2002-08-011-4/+11
* New test for sorting sanity. Note that this will fail in earlier Pythons,Tim Peters2002-08-011-0/+124
* Restore a full arglist to the socket wrapper, so it supports keywordTim Peters2002-07-311-2/+2
* For platforms (like Windows) that wrap _socket.socket:Tim Peters2002-07-311-2/+3
* Reverting this to rev 1.3. It's apparently broken everywhere at revTim Peters2002-07-311-5/+5
* Enable test_socket again, if only to prevent mistakes like JeremyGuido van Rossum2002-07-311-2/+2
* Repair testNtoH for large long arguments.Jeremy Hylton2002-07-311-9/+8
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-3046-60/+79
* Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000).Thomas Heller2002-07-301-0/+3
* Fix forMichael W. Hudson2002-07-292-0/+6
* Revert #571603 since it is ok to import codecs that are not subdirectoriesMartin v. Löwis2002-07-291-9/+12
* Recompiled the exe and updated bdist_wininst.py.Thomas Heller2002-07-291-334/+343
* Add 'engine' back. IDLE used this, others might have copied it fromGuido van Rossum2002-07-281-0/+2
* Patch #586999: Fix multiline string in sendmail example.Martin v. Löwis2002-07-281-1/+1
* Fix the problem of not raising a TypeError exception when doing:Neal Norwitz2002-07-281-1/+7
* Patch #571603: Refer to encodings package explicitly.Martin v. Löwis2002-07-281-1/+1
* Patch #543498: Use License: field instead of Copyright:.Martin v. Löwis2002-07-281-1/+1
* Patch #581705: Catch OSError, termios.error in spawn. 2.2 bugfix candidate.Martin v. Löwis2002-07-281-4/+9
* Reset the Python execution server environment to its initial value priorKurt B. Kaiser2002-07-282-4/+14
* remove redundant importPiers Lauder2002-07-271-1/+0
* remove redundant codePiers Lauder2002-07-271-1/+1
* remove o/s dependancy from testPiers Lauder2002-07-272-11/+37
* Use os.environ.get() in stead of os.getenv() (which is platform-dependent).Jack Jansen2002-07-261-1/+1