Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mwh spotted a copied error message, make it unique (and correct) | Neal Norwitz | 2005-12-05 | 1 | -1/+1 |
| | |||||
* | Fix SF #1373161, r41552 broke test_file on OS X | Neal Norwitz | 2005-12-05 | 1 | -1/+1 |
| | | | | | You apparently can seek(0) on sys.stdin on OS X. But you can't go backwards, so seek(-1). | ||||
* | [Bug #1281032] Pass encoding from the input source to pyexpat's ParserCreate() | Andrew M. Kuchling | 2005-12-04 | 1 | -2/+3 |
| | |||||
* | [Bug #1164912] Ensure Datetime wrapper class .value attribute is an 8-bit ↵ | Andrew M. Kuchling | 2005-12-04 | 2 | -0/+11 |
| | | | | string, not a Unicode string | ||||
* | [Patch #1039083] Add 'encoding' parameter to SimpleXMLRPCServer | Andrew M. Kuchling | 2005-12-04 | 1 | -8/+11 |
| | |||||
* | Use boolean name | Andrew M. Kuchling | 2005-12-04 | 1 | -1/+1 |
| | |||||
* | [Patch #893642] Add optional allow_none argument to SimpleXMLRPCServer, ↵ | Andrew M. Kuchling | 2005-12-04 | 1 | -6/+8 |
| | | | | CGIXMLRPCRequestHandler | ||||
* | [Bug #1372836] Remove unused code | Andrew M. Kuchling | 2005-12-04 | 1 | -4/+0 |
| | |||||
* | [Bug #792570] Under Windows, socket.read() seems to run into trouble when | Andrew M. Kuchling | 2005-12-04 | 1 | -2/+13 |
| | | | | | | | | | | asked to read tens of megabytes of data. On my Mac, it hits MemoryErrors when reading around 15Mb in one chunk. The fix is to read the body in several parts, not as one big piece. It would be nice to fix the underlying socket.read() problem, too. 2.4 bugfix candidate. | ||||
* | [Bug #1222790] Set reuse-address and close-on-exec flags on the HTTP ↵ | Andrew M. Kuchling | 2005-12-04 | 1 | -1/+11 |
| | | | | listening socket | ||||
* | Test another error case in PyFloat_FromString(). | Walter Dörwald | 2005-11-29 | 1 | -0/+2 |
| | |||||
* | Improve test coverage. Hope the test_file changes work the same on windows. | Neal Norwitz | 2005-11-27 | 5 | -0/+75 |
| | |||||
* | Patch #1162825: Support non-ASCII characters in IDLE window titles. | Martin v. Löwis | 2005-11-27 | 2 | -6/+34 |
| | |||||
* | bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵ | Georg Brandl | 2005-11-26 | 1 | -2/+5 |
| | | | | cannot be assigned attributes on the fly. | ||||
* | SF patch #1364545: test_cmd_line.py relied on english error messages when | Walter Dörwald | 2005-11-25 | 1 | -13/+12 |
| | | | | | invoking the Python interpreter (which didn't work on non-english Windows versions). Check return codes instead. | ||||
* | Remove unused _callers member. No need for types, use isinstance | Neal Norwitz | 2005-11-25 | 1 | -5/+2 |
| | |||||
* | Stop looping to do nothing, just pass. | Neal Norwitz | 2005-11-25 | 1 | -2/+2 |
| | |||||
* | No need for types, use isinstance | Neal Norwitz | 2005-11-25 | 3 | -9/+6 |
| | |||||
* | Use sorted() builtin | Neal Norwitz | 2005-11-25 | 1 | -10/+5 |
| | |||||
* | Test is still disabled, but access through public module | Neal Norwitz | 2005-11-25 | 1 | -2/+2 |
| | |||||
* | Get symtable to limp along, can run compiler/symbols.py. Not saying much, ↵ | Neal Norwitz | 2005-11-25 | 1 | -1/+4 |
| | | | | needs more work. | ||||
* | Cleanup a bit more references so test_urllibnet is stable (test_urllib2 is ↵ | Neal Norwitz | 2005-11-25 | 1 | -2/+4 |
| | | | | sometimes stable, at least in isolation) | ||||
* | Fix some comment typos | Neal Norwitz | 2005-11-25 | 1 | -1/+1 |
| | |||||
* | Fix typo in comment. | Neal Norwitz | 2005-11-24 | 1 | -1/+2 |
| | | | | | | Delete globals which contain variable information at the end of the test. This makes the test stable (no reported leaks) when running regrtest -R to find reference leaks. | ||||
* | Move registration of the codec search function to the module scope | Neal Norwitz | 2005-11-24 | 1 | -17/+18 |
| | | | | | | so it is only executed once. Otherwise the same search function is repeated added to the codec search path when regrtest is run with -R and leaks are reported. | ||||
* | move test into a unittest.TestCase, no functional changes | Neal Norwitz | 2005-11-24 | 1 | -74/+74 |
| | |||||
* | Fix main() call | Kurt B. Kaiser | 2005-11-23 | 1 | -3/+3 |
| | | | | Patch 1315161 sebastien blanchet | ||||
* | Prevent threading.Thread.join() from blocking when a previous call raised an | Brett Cannon | 2005-11-23 | 1 | -16/+18 |
| | | | | | | exception (e.g., passing in an illegal argument). Applies patch #1314396. Thanks Eric Blossom. | ||||
* | 1. Made advanced keybinding dialog functional. | Kurt B. Kaiser | 2005-11-22 | 2 | -13/+27 |
| | | | | 2. Allow binding of movement keys | ||||
* | Prefer GNOME browser over mozilla. | Georg Brandl | 2005-11-22 | 1 | -7/+7 |
| | |||||
* | [Patch #1094164] replaceChild(x,x) ends up removing x of the tree. Add fix ↵ | Andrew M. Kuchling | 2005-11-22 | 2 | -2/+13 |
| | | | | from Felix Rabe and a test case | ||||
* | [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and ↵ | Andrew M. Kuchling | 2005-11-22 | 1 | -0/+2 |
| | | | | bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo. | ||||
* | Use optparse instead of getopt for command line options. | Walter Dörwald | 2005-11-22 | 1 | -28/+20 |
| | | | | | | Use "raise instance" instead of "raise class, args". Modernize the code in other spots (bools, startswith()). | ||||
* | Avoid using str as a variable name. | Walter Dörwald | 2005-11-22 | 1 | -4/+4 |
| | |||||
* | improve test coverage in Python/pystrtod.c and Python/mystrtoul.c. | Neal Norwitz | 2005-11-22 | 1 | -0/+29 |
| | |||||
* | Fix typo and update comment obsoleted by 'syntax' patch | Kurt B. Kaiser | 2005-11-22 | 1 | -5/+2 |
| | |||||
* | Default two second delay on attribute pop-up, less noisy interface. | Kurt B. Kaiser | 2005-11-22 | 1 | -1/+1 |
| | | | | (Opens immediately if TAB is typed after '.') | ||||
* | Following 'syntax' patch, accelerator keys in menus weren't being | Kurt B. Kaiser | 2005-11-22 | 1 | -22/+21 |
| | | | | updated after a keyset change. Also, formatted ApplyKeyBindings() | ||||
* | Use basestring instead of type.StringType for checking whether a input | Walter Dörwald | 2005-11-21 | 1 | -7/+6 |
| | | | | | or output file is a file name instead of a file object. This enables unicode file names as arguments to uu.encode() and uu.decode(). | ||||
* | Add a test for uu.encode() that passed filenames as | Walter Dörwald | 2005-11-21 | 1 | -0/+8 |
| | | | | in_file and out_file. | ||||
* | Add a rudimentary test for the platform module that at least calls each | Walter Dörwald | 2005-11-21 | 1 | -0/+74 |
| | | | | documented function once. | ||||
* | Fix typo. | Walter Dörwald | 2005-11-21 | 1 | -1/+1 |
| | |||||
* | Merge IDLE-syntax-branch r39668:41449 into trunk | Kurt B. Kaiser | 2005-11-18 | 13 | -201/+1592 |
| | | | | | | | | | | | | | | | | A idlelib/AutoCompleteWindow.py A idlelib/AutoComplete.py A idlelib/HyperParser.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/configDialog.py M idlelib/EditorWindow.py M idlelib/PyParse.py M idlelib/CallTips.py M idlelib/CallTipWindow.py M idlelib/run.py M idlelib/config-extensions.def A idlelib/MultiCall.py | ||||
* | Increase code coverage in Python/structmember.c from 33% to 40% | Walter Dörwald | 2005-11-18 | 1 | -0/+8 |
| | | | | (by forcing a call to the listmember() function). | ||||
* | Add tests to increase code coverage in Python/codecs.c and Python/exceptions.c. | Walter Dörwald | 2005-11-17 | 2 | -2/+150 |
| | |||||
* | Add tests for various error cases and for readbuffer_encode() and | Walter Dörwald | 2005-11-17 | 2 | -2/+72 |
| | | | | | charbuffer_encode(). This increases code coverage in Modules/_codecsmodule.c from 83% to 95%. | ||||
* | Better indentation after first line of string continuation. | Kurt B. Kaiser | 2005-11-15 | 3 | -5/+20 |
| | | | | IDLEfork Patch 681992, Noam Raphael | ||||
* | SF#1343671. | Fredrik Lundh | 2005-11-12 | 1 | -1/+1 |
| | | | | | The removedirs function removes empty directories, it doesn't empty them. | ||||
* | r903@spiff: Fredrik | 2005-11-12 16:28:37 +0100 | Fredrik Lundh | 2005-11-12 | 4 | -23/+2 |
| | | | | removed outdated copyright notices (etc) | ||||
* | r879@spiff: Fredrik | 2005-11-12 14:38:03 +0100 | Fredrik Lundh | 2005-11-12 | 1 | -11/+14 |
| | | | | | | r878@spiff: Fredrik | 2005-11-12 14:37:22 +0100 minor docstring and comment tweaks (wikipedia might not be the ultimate reference, but it's a lot better than "XXX" ;-) |