| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove cut 'n paste silliness. | Tim Peters | 2002-08-03 | 1 | -2/+0 |
|
|
* | Minor fiddling, including a simple class to implement a heap iterator | Tim Peters | 2002-08-03 | 2 | -10/+23 |
|
|
* | Augment credits. | Guido van Rossum | 2002-08-02 | 1 | -1/+1 |
|
|
* | Hmm! I thought I checked this in before! Oh well. | Tim Peters | 2002-08-02 | 2 | -10/+48 |
|
|
* | Add a PEP-263-style encoding turd^H^H^H^Hdeclaration, because there's | Guido van Rossum | 2002-08-02 | 1 | -0/+2 |
|
|
* | heappop(): Added comments; simplified and sped the code. | Tim Peters | 2002-08-02 | 1 | -21/+19 |
|
|
* | heappop(): Use "while True" instead of "while 1". | Tim Peters | 2002-08-02 | 1 | -1/+1 |
|
|
* | check_invariant(): Use the same child->parent "formula" used by heapq.py. | Tim Peters | 2002-08-02 | 1 | -2/+2 |
|
|
* | Don't use true division where int division was intended. For that matter, | Tim Peters | 2002-08-02 | 2 | -2/+2 |
|
|
* | Adding the heap queue algorithm, per discussion in python-dev last | Guido van Rossum | 2002-08-02 | 1 | -0/+48 |
|
|
* | catch the situation where Berkeley DB is used to emulate dbm(3) library | Skip Montanaro | 2002-08-02 | 1 | -3/+24 |
|
|
* | regression test for the whichdb module | Skip Montanaro | 2002-08-02 | 1 | -0/+63 |
|
|
* | Add Kevin O'Connor, author of the heapq code. | Guido van Rossum | 2002-08-02 | 1 | -0/+2 |
|
|
* | Adding the heap queue algorithm, per discussion in python-dev last | Guido van Rossum | 2002-08-02 | 1 | -0/+176 |
|
|
* | testGetServByName shouldn't check for getservbyname - the socket module | Skip Montanaro | 2002-08-02 | 1 | -18/+17 |
|
|
* | New test %sort. This takes a sorted list, picks 1% of the list positions | Tim Peters | 2002-08-02 | 1 | -1/+7 |
|
|
* | modify testGetServByName so it tries a few different protocols. In this day | Skip Montanaro | 2002-08-02 | 1 | -5/+17 |
|
|
* | Fix for SF bug 570678 (can't flush read-only file on Mac OS X). | Guido van Rossum | 2002-08-01 | 1 | -1/+0 |
|
|
* | SF patch 588728 (Nathan Srebro). | Guido van Rossum | 2002-08-01 | 1 | -4/+11 |
|
|
* | New test for sorting sanity. Note that this will fail in earlier Pythons, | Tim Peters | 2002-08-01 | 1 | -0/+124 |
|
|
* | Restore a full arglist to the socket wrapper, so it supports keyword | Tim Peters | 2002-07-31 | 1 | -2/+2 |
|
|
* | For platforms (like Windows) that wrap _socket.socket: | Tim Peters | 2002-07-31 | 1 | -2/+3 |
|
|
* | Reverting this to rev 1.3. It's apparently broken everywhere at rev | Tim Peters | 2002-07-31 | 1 | -5/+5 |
|
|
* | Enable test_socket again, if only to prevent mistakes like Jeremy | Guido van Rossum | 2002-07-31 | 1 | -2/+2 |
|
|
* | Repair testNtoH for large long arguments. | Jeremy Hylton | 2002-07-31 | 1 | -9/+8 |
|
|
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 46 | -60/+79 |
|
|
* | Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). | Thomas Heller | 2002-07-30 | 1 | -0/+3 |
|
|
* | Fix for | Michael W. Hudson | 2002-07-29 | 2 | -0/+6 |
|
|
* | Revert #571603 since it is ok to import codecs that are not subdirectories | Martin v. Löwis | 2002-07-29 | 1 | -9/+12 |
|
|
* | Recompiled the exe and updated bdist_wininst.py. | Thomas Heller | 2002-07-29 | 1 | -334/+343 |
|
|
* | Add 'engine' back. IDLE used this, others might have copied it from | Guido van Rossum | 2002-07-28 | 1 | -0/+2 |
|
|
* | Patch #586999: Fix multiline string in sendmail example. | Martin v. Löwis | 2002-07-28 | 1 | -1/+1 |
|
|
* | Fix the problem of not raising a TypeError exception when doing: | Neal Norwitz | 2002-07-28 | 1 | -1/+7 |
|
|
* | Patch #571603: Refer to encodings package explicitly. | Martin v. Löwis | 2002-07-28 | 1 | -1/+1 |
|
|
* | Patch #543498: Use License: field instead of Copyright:. | Martin v. Löwis | 2002-07-28 | 1 | -1/+1 |
|
|
* | Patch #581705: Catch OSError, termios.error in spawn. 2.2 bugfix candidate. | Martin v. Löwis | 2002-07-28 | 1 | -4/+9 |
|
|
* | Reset the Python execution server environment to its initial value prior | Kurt B. Kaiser | 2002-07-28 | 2 | -4/+14 |
|
|
* | remove redundant import | Piers Lauder | 2002-07-27 | 1 | -1/+0 |
|
|
* | remove redundant code | Piers Lauder | 2002-07-27 | 1 | -1/+1 |
|
|
* | remove o/s dependancy from test | Piers Lauder | 2002-07-27 | 2 | -11/+37 |
|
|
* | Use os.environ.get() in stead of os.getenv() (which is platform-dependent). | Jack Jansen | 2002-07-26 | 1 | -1/+1 |
|
|
* | Reorganized so the test is skipped if os.popen() doesn't exist (in stead of f... | Jack Jansen | 2002-07-26 | 1 | -4/+4 |
|
|
* | Reverse the RPC socket connection: Python execution server connects to | Kurt B. Kaiser | 2002-07-26 | 3 | -74/+113 |
|
|
* | Remove duplicate checks of the Node.allnodes variable. | Fred Drake | 2002-07-25 | 1 | -3/+0 |
|
|
* | Add an XXX comment and a pointer to a full bug report. | Fred Drake | 2002-07-25 | 1 | -0/+2 |
|
|
* | typo | Skip Montanaro | 2002-07-25 | 1 | -1/+1 |
|
|
* | Extended socket.htonl and ntohl to accept longs. | Jeremy Hylton | 2002-07-25 | 1 | -0/+11 |
|
|
* | Remove test that was none too picky about whether attributes exist. | Jeremy Hylton | 2002-07-25 | 1 | -41/+0 |
|
|
* | Use full package paths in imports. | Barry Warsaw | 2002-07-23 | 1 | -7/+2 |
|
|
* | Added a couple of more tests for Header charset handling. | Barry Warsaw | 2002-07-23 | 1 | -0/+15 |
|
|