Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | RFE [ 1216944 ] Add Error Code Dictionary to urllib2 | Georg Brandl | 2005-07-14 | 2 | -0/+53 |
| | |||||
* | Fix: | Michael W. Hudson | 2005-07-12 | 1 | -0/+20 |
| | | | | | | | [ 1229429 ] missing Py_DECREF in PyObject_CallMethod Add a test in test_enumerate, which is a bit random, but suffices (reversed_new calls PyObject_CallMethod under some circumstances). | ||||
* | Fix "upload" command garbling and truncating files on Windows. If it's a | Phillip J. Eby | 2005-07-07 | 1 | -1/+1 |
| | | | | binary file, use 'rb'! | ||||
* | Add test for hash commutativity. | Raymond Hettinger | 2005-07-05 | 1 | -0/+10 |
| | |||||
* | fixed tag generation to avoid null tags | Piers Lauder | 2005-07-05 | 1 | -2/+2 |
| | |||||
* | bug #1177468: don't cache /dev/urandom file descriptor in os.urandom | Georg Brandl | 2005-07-04 | 1 | -8/+4 |
| | |||||
* | Add doctest for examples in libweakref.tex to test_weakref. | Georg Brandl | 2005-07-02 | 1 | -0/+86 |
| | |||||
* | patch [ 1231538 ] Typo fix in compiler/transformer.py (WalkerEror) | Georg Brandl | 2005-07-02 | 1 | -11/+11 |
| | |||||
* | SF bug #1224347: int/long unification and hex() | Raymond Hettinger | 2005-06-29 | 1 | -1/+1 |
| | | | | Hex longs now print with lowercase letters like their int counterparts. | ||||
* | Adapt output file to new Cookie JS output. | Georg Brandl | 2005-06-27 | 1 | -4/+4 |
| | |||||
* | Fix test cases for doctest. | Georg Brandl | 2005-06-26 | 2 | -0/+4 |
| | |||||
* | bug [ 839151 ] attempt to access sys.argv when it doesn't exist | Georg Brandl | 2005-06-26 | 1 | -1/+5 |
| | |||||
* | bug [ 1172785 ] doctest.script_from_examples() result sometimes un-exec-able | Georg Brandl | 2005-06-26 | 1 | -1/+2 |
| | |||||
* | bug [ 1155638 ] self.length shield exception in httplib | Georg Brandl | 2005-06-26 | 1 | -0/+1 |
| | |||||
* | bug [ 1175848 ] poorly named variable in urllib2.py | Georg Brandl | 2005-06-26 | 1 | -2/+2 |
| | |||||
* | Prevent creating a HTML link to file://?/ | Georg Brandl | 2005-06-26 | 1 | -2/+5 |
| | |||||
* | bug [ 1100201 ] Cross-site scripting on BaseHTTPServer | Georg Brandl | 2005-06-26 | 1 | -1/+4 |
| | |||||
* | bug [ 1108948 ] Cookie.py produces invalid code | Georg Brandl | 2005-06-26 | 1 | -2/+2 |
| | |||||
* | SMTP.help() was returning a tuple instead of the promised text. | Kurt B. Kaiser | 2005-06-26 | 1 | -1/+1 |
| | |||||
* | SF bug #1224621: tokenize module does not detect inconsistent dedents | Raymond Hettinger | 2005-06-21 | 2 | -1/+22 |
| | |||||
* | Remove dead code | Kurt B. Kaiser | 2005-06-21 | 2 | -20/+8 |
| | | | | | M IdleHistory.py M PyShell.py | ||||
* | test_asynchat is no longer expected to produce output. | Michael W. Hudson | 2005-06-20 | 2 | -4/+3 |
| | | | | also, wait for threads to finish before proceeding. | ||||
* | Apply the _is_special guard. | Raymond Hettinger | 2005-06-20 | 1 | -12/+13 |
| | |||||
* | <Enter> when cursor is on a previous command retrieves that command. Instead | Kurt B. Kaiser | 2005-06-19 | 2 | -7/+32 |
| | | | | | | | | | of replacing the input line, the previous command is now appended to the input line. Indentation is preserved, and undo is enabled. Patch 1196917 Jeff Shute Modified Files: NEWS.txt PyShell.py | ||||
* | SF patch #1200018: Restore GC support to set objects | Raymond Hettinger | 2005-06-18 | 1 | -0/+10 |
| | | | | | Reverts 1.26 and 1.27. And adds cycle testing. | ||||
* | Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with | Skip Montanaro | 2005-06-17 | 1 | -0/+31 |
| | | | | posixmodule.c 2.335. Really should be considered part of patch #1103951. | ||||
* | [Patch #1005892 from Alexandr Zamaraev] Fix two errors in the curses test suite | Andrew M. Kuchling | 2005-06-15 | 1 | -1/+2 |
| | |||||
* | yet another cache to clear when leak hunting. | Michael W. Hudson | 2005-06-14 | 1 | -0/+2 |
| | |||||
* | Port test_long.py to unittest. | Walter Dörwald | 2005-06-13 | 1 | -508/+451 |
| | |||||
* | Fix bug | Michael W. Hudson | 2005-06-13 | 1 | -0/+9 |
| | | | | | | | | [ 1180997 ] lax error-checking in new-in-2.4 marshal stuff which I'd assigned to Martin, but actually turned out to be easy to fix. Also, a test. | ||||
* | SF bug #1219361 Fix typo | Raymond Hettinger | 2005-06-13 | 1 | -1/+1 |
| | |||||
* | 1. Clarify "tab/space" Error Dialog and "Tab Width" Dialog associated with | Kurt B. Kaiser | 2005-06-12 | 3 | -9/+12 |
| | | | | | | | | | | the Untabify command. 2. Corrected "tab/space" Error Dialog to show correct menu for Untabify. Patch 1196980 Jeff Shute M EditorWindow.py M NEWS.txt M ScriptBinding.py | ||||
* | 1. Patch 1196895 Jeff Shute: | Kurt B. Kaiser | 2005-06-12 | 5 | -4/+13 |
| | | | | | | | | | | | | | | New files are colorized by default, and colorizing is removed when saving as non-Python files. Patch 1196895 Jeff Shute Closes Python Bugs 775012 and 800432, partial fix IDLEfork 763524 2. Update help.txt for left/right word delete M CREDITS.txt M ColorDelegator.py M EditorWindow.py M NEWS.txt M help.txt | ||||
* | Patch #1171150: add a newline to py_compile error output | Georg Brandl | 2005-06-10 | 1 | -1/+1 |
| | |||||
* | Add untokenize() function to allow full round-trip tokenization. | Raymond Hettinger | 2005-06-10 | 3 | -7/+125 |
| | | | | | | Should significantly enhance the utility of the module by supporting the creation of tools that modify the token stream and writeback the modified result. | ||||
* | [Patch #1002763] Allow long ints as terminator values; also, treat a ↵ | Andrew M. Kuchling | 2005-06-09 | 1 | -2/+2 |
| | | | | terminator of 0 like the empty string or None | ||||
* | Convert asynchat test to unittest; exercise the client using a numeric value ↵ | Andrew M. Kuchling | 2005-06-09 | 1 | -14/+46 |
| | | | | as the terminator | ||||
* | [Bug #1074261, patch #1074381] Restrict the size of chunks read from the ↵ | Andrew M. Kuchling | 2005-06-09 | 2 | -2/+26 |
| | | | | file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin | ||||
* | Convert gzip test suite to use unittest | Andrew M. Kuchling | 2005-06-09 | 1 | -74/+110 |
| | |||||
* | fix import to work with either module name. | Gregory P. Smith | 2005-06-09 | 1 | -1/+6 |
| | |||||
* | [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ↵ | Andrew M. Kuchling | 2005-06-08 | 2 | -4/+12 |
| | | | | single null byte; test a null byte in all encodings to be sure it works | ||||
* | fix broken (unexecuted) test | Anthony Baxter | 2005-06-08 | 1 | -3/+3 |
| | |||||
* | Tools/scripts/reindent.py _is_ your friend | Anthony Baxter | 2005-06-08 | 5 | -119/+119 |
| | |||||
* | [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an ↵ | Andrew M. Kuchling | 2005-06-07 | 2 | -0/+19 |
| | | | | extra \r on the end of a line; fixed by stripping off trailing whitespace. | ||||
* | Minor namespace clean-up. | Raymond Hettinger | 2005-06-07 | 1 | -2/+2 |
| | |||||
* | fix more Errors (not Failures) when run using BerkeleyDB <= 4.0 | Gregory P. Smith | 2005-06-06 | 1 | -4/+13 |
| | |||||
* | fix Errors (not Failures) in test cases when running with BerkeleyDB<4.2 | Gregory P. Smith | 2005-06-06 | 1 | -32/+61 |
| | |||||
* | make the tests that expect uncatchable exceptions from a callback test | Gregory P. Smith | 2005-06-06 | 1 | -19/+48 |
| | | | | | | for them in a roundabout way (catching and parsing stderr) keeps test output clean. | ||||
* | test case for pybsddb SF bug id 1215432 | Gregory P. Smith | 2005-06-06 | 1 | -0/+50 |
| | |||||
* | test DB.associate using transactions. somewhat related to SF pybsddb | Gregory P. Smith | 2005-06-06 | 1 | -12/+46 |
| | | | | bug #1215432 |