| Commit message (Expand) | Author | Age | Files | Lines |
* | append(): Bite the bullet and let charset be the string name of a | Barry Warsaw | 2002-07-23 | 1 | -3/+6 |
|
|
* | make_header(): Watch out for charset is None, which decode_header() | Barry Warsaw | 2002-07-23 | 1 | -3/+2 |
|
|
* | SF patch #581396, Canvas "select_item" always returns None | Neal Norwitz | 2002-07-23 | 1 | -1/+1 |
|
|
* | New test "+sort", tacking 10 random floats on to the end of a sorted | Tim Peters | 2002-07-21 | 1 | -6/+9 |
|
|
* | Changed import from | Tim Peters | 2002-07-21 | 1 | -1/+1 |
|
|
* | Bug: clearing the shell undo list after a prompt was allowing files to be | Kurt B. Kaiser | 2002-07-21 | 1 | -5/+11 |
|
|
* | Get popen test to work even if python is not in the path | Neal Norwitz | 2002-07-20 | 1 | -1/+1 |
|
|
* | Added new test "3sort". This is sorted data but with 3 random exchanges. | Tim Peters | 2002-07-20 | 1 | -1/+9 |
|
|
* | Move the setting of os.environ['LANGUAGE'] to setup(), and reset it to | Guido van Rossum | 2002-07-20 | 1 | -1/+2 |
|
|
* | Shut the test up and add a missing import | Barry Warsaw | 2002-07-19 | 2 | -2/+4 |
|
|
* | The email package's tests live much better in a subpackage | Barry Warsaw | 2002-07-19 | 6 | -2045/+2294 |
|
|
* | The email package's tests live much better in a subpackage | Barry Warsaw | 2002-07-19 | 31 | -0/+1182 |
|
|
* | message_from_string(), message_from_file(): The consensus on the | Barry Warsaw | 2002-07-19 | 1 | -2/+2 |
|
|
* | Parser.__init__(): The consensus on the mimelib-devel list is that | Barry Warsaw | 2002-07-19 | 1 | -2/+2 |
|
|
* | To better support default content types, fix an API wart, and preserve | Barry Warsaw | 2002-07-19 | 1 | -13/+62 |
|
|
* | _structure(): Take an optional `fp' argument which would be the object | Barry Warsaw | 2002-07-19 | 1 | -3/+7 |
|
|
* | _dispatch(): Use the new Message.get_content_type() method as hashed | Barry Warsaw | 2002-07-19 | 1 | -6/+1 |
|
|
* | Follow PyXML: Remove all prints from successful tests. This means we can | Fred Drake | 2002-07-19 | 2 | -241/+14 |
|
|
* | Remove a few lines that aren't used and cause problems on platforms | Guido van Rossum | 2002-07-19 | 1 | -6/+0 |
|
|
* | Pure Python strptime implementation by Brett Cannon. See SF patch 474274. | Guido van Rossum | 2002-07-19 | 3 | -0/+779 |
|
|
* | A few days ago, Guido said (in the thread "[Python-Dev] Python | Michael W. Hudson | 2002-07-19 | 1 | -0/+14 |
|
|
* | Add test for previous core dump when sending on closed socket with | Guido van Rossum | 2002-07-19 | 1 | -1/+10 |
|
|
* | Anthony Baxter's cleanup patch. Python project SF patch # 583190, | Barry Warsaw | 2002-07-18 | 2 | -22/+29 |
|
|
* | Anthony Baxter's patch to expose the parser's `strict' flag in these | Barry Warsaw | 2002-07-18 | 1 | -5/+5 |
|
|
* | Add clarifying comment. | Guido van Rossum | 2002-07-18 | 1 | -0/+1 |
|
|
* | Script to run the pystones "benchmark" under HotShot. | Fred Drake | 2002-07-18 | 1 | -0/+35 |
|
|
* | Simplify; the low-level log reader is now always a modern iterator, | Fred Drake | 2002-07-18 | 1 | -6/+1 |
|
|
* | Expose the fileno() method of the underlying profiler. | Fred Drake | 2002-07-18 | 1 | -0/+4 |
|
|
* | Expose the fileno() method of the underlying log reader. | Fred Drake | 2002-07-18 | 1 | -6/+4 |
|
|
* | Add default timeout functionality. This adds setdefaulttimeout() and | Guido van Rossum | 2002-07-18 | 2 | -0/+32 |
|
|
* | Gave this a facelift: "/" vs "//", whrandom vs random, etc. Boosted | Tim Peters | 2002-07-18 | 1 | -35/+46 |
|
|
* | Gave hotshot.LogReader a close() method, to allow users to close the | Tim Peters | 2002-07-18 | 2 | -4/+4 |
|
|
* | We're no longer trying to support older Python versions with this | Guido van Rossum | 2002-07-18 | 1 | -7/+2 |
|
|
* | test_hotshot fails on Windows now. Added XXX comment explaining why, | Tim Peters | 2002-07-17 | 1 | -0/+4 |
|
|
* | Add a test for the 'closed' attribute on the C-profiler object. | Guido van Rossum | 2002-07-17 | 1 | -0/+3 |
|
|
* | Add missing comma. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | Add a rather generous set of tests allowed to be skipped on sunos5. | Guido van Rossum | 2002-07-17 | 1 | -0/+23 |
|
|
* | Use sys.executable to run Python, as suggested by Neal Norwitz. | Tim Peters | 2002-07-17 | 1 | -2/+3 |
|
|
* | Bunch of tests to make sure that StopIteration is a sink state. | Guido van Rossum | 2002-07-16 | 1 | -0/+76 |
|
|
* | Fix typos and such caught by the pycheckerbot. | Jeremy Hylton | 2002-07-16 | 1 | -3/+3 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-07-16 | 14 | -50/+48 |
|
|
* | Send HTTP requests with a single send() call instead of many. | Jeremy Hylton | 2002-07-16 | 1 | -15/+26 |
|
|
* | Given the persistent id code a shot at a class before calling save_global(). | Jeremy Hylton | 2002-07-16 | 1 | -5/+5 |
|
|
* | The atexit module effectively turned itself off if sys.exitfunc already | Tim Peters | 2002-07-16 | 3 | -24/+53 |
|
|
* | Tim_one's change to aggressively overallocate nodes when adding child | Andrew MacIntyre | 2002-07-15 | 1 | -9/+2 |
|
|
* | Remove httplib from tested modules. | Jeremy Hylton | 2002-07-12 | 1 | -15/+0 |
|
|
* | Palm OS encoding from Sjoerd Mullender | Marc-André Lemburg | 2002-07-12 | 1 | -0/+67 |
|
|
* | Change _begin() back to begin(). | Jeremy Hylton | 2002-07-12 | 2 | -6/+5 |
|
|
* | Fix SF bug 579701 (Fernando Pérez); an input line consisting of one or | Guido van Rossum | 2002-07-12 | 1 | -8/+8 |
|
|
* | Well, Fred never did explain why the code to determine whether the | Michael W. Hudson | 2002-07-12 | 1 | -7/+3 |
|
|