summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix leaked reference to None.Walter Dörwald2005-11-281-0/+1
|
* Patch #1350409: Port signal handling to VS 2005.Martin v. Löwis2005-11-283-0/+20
|
* Fix memory leaksNeal Norwitz2005-11-271-5/+8
|
* Improve test coverage. Hope the test_file changes work the same on windows.Neal Norwitz2005-11-275-0/+75
|
* Patch #1162825: Support non-ASCII characters in IDLE window titles.Martin v. Löwis2005-11-273-6/+36
|
* bug #1365984: urllib and data: URLs. Problem was that cStringIO objects ↵Georg Brandl2005-11-262-2/+7
| | | | cannot be assigned attributes on the fly.
* Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.Martin v. Löwis2005-11-262-6/+25
| | | | | Also set _XOPEN_SOURCE to 500. Will backport to 2.4.
* SF patch #1364946: Add a reference link from the dcoumentation of the encodeWalter Dörwald2005-11-252-3/+4
| | | | and decode methods to the documentation of the default error handlers.
* SF patch #1364545: test_cmd_line.py relied on english error messages whenWalter Dörwald2005-11-251-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 isinstanceNeal Norwitz2005-11-251-5/+2
|
* Stop looping to do nothing, just pass.Neal Norwitz2005-11-251-2/+2
|
* No need for types, use isinstanceNeal Norwitz2005-11-253-9/+6
|
* Use sorted() builtinNeal Norwitz2005-11-251-10/+5
|
* Test is still disabled, but access through public moduleNeal Norwitz2005-11-251-2/+2
|
* Get symtable to limp along, can run compiler/symbols.py. Not saying much, ↵Neal Norwitz2005-11-251-1/+4
| | | | needs more work.
* Cleanup a bit more references so test_urllibnet is stable (test_urllib2 is ↵Neal Norwitz2005-11-251-2/+4
| | | | sometimes stable, at least in isolation)
* Fix some comment typosNeal Norwitz2005-11-251-1/+1
|
* Fix typo in comment.Neal Norwitz2005-11-241-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.
* Fix a few more ref leaks. Backport candidateNeal Norwitz2005-11-243-4/+8
|
* Move registration of the codec search function to the module scopeNeal Norwitz2005-11-241-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 changesNeal Norwitz2005-11-241-74/+74
|
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-243-5/+47
|
* Fix main() callKurt B. Kaiser2005-11-231-3/+3
| | | | Patch 1315161 sebastien blanchet
* Prevent threading.Thread.join() from blocking when a previous call raised anBrett Cannon2005-11-233-16/+23
| | | | | | exception (e.g., passing in an illegal argument). Applies patch #1314396. Thanks Eric Blossom.
* 1. Made advanced keybinding dialog functional.Kurt B. Kaiser2005-11-222-13/+27
| | | | 2. Allow binding of movement keys
* Bug #1357604: os.makedirs handles UNC pathsGeorg Brandl2005-11-221-3/+2
|
* Added example for the ** operator in function callsGeorg Brandl2005-11-221-0/+14
|
* Patch #1255218: libmultifile.tex: tell what a decoration isGeorg Brandl2005-11-221-3/+3
|
* Bug #869197: setgroups rejects long integer argumentGeorg Brandl2005-11-222-6/+33
|
* Bug #1359053: Doc: \Uxxxxxxxx escapes _are_ interpreted in raw unicode stringsGeorg Brandl2005-11-221-2/+3
|
* Prefer GNOME browser over mozilla.Georg Brandl2005-11-221-7/+7
|
* Add a note to os.chown that permission constants can be combinedGeorg Brandl2005-11-221-1/+2
|
* [Patch #1094164] replaceChild(x,x) ends up removing x of the tree. Add fix ↵Andrew M. Kuchling2005-11-222-2/+13
| | | | from Felix Rabe and a test case
* [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and ↵Andrew M. Kuchling2005-11-222-2/+4
| | | | bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo.
* Typo fixAndrew M. Kuchling2005-11-221-1/+1
|
* Add generator-expression nodesAndrew M. Kuchling2005-11-221-0/+15
|
* Add comment about updating docsAndrew M. Kuchling2005-11-221-0/+3
|
* [Bug #449093] FloorDiv AST node type not listedAndrew M. Kuchling2005-11-221-0/+4
|
* Use optparse instead of getopt for command line options.Walter Dörwald2005-11-221-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örwald2005-11-221-4/+4
|
* improve test coverage in Python/pystrtod.c and Python/mystrtoul.c.Neal Norwitz2005-11-221-0/+29
|
* Fix typo and update comment obsoleted by 'syntax' patchKurt B. Kaiser2005-11-221-5/+2
|
* Default two second delay on attribute pop-up, less noisy interface.Kurt B. Kaiser2005-11-221-1/+1
| | | | (Opens immediately if TAB is typed after '.')
* Following 'syntax' patch, accelerator keys in menus weren't beingKurt B. Kaiser2005-11-221-22/+21
| | | | updated after a keyset change. Also, formatted ApplyKeyBindings()
* Use basestring instead of type.StringType for checking whether a inputWalter Dörwald2005-11-212-7/+8
| | | | | 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 asWalter Dörwald2005-11-211-0/+8
| | | | in_file and out_file.
* Add a rudimentary test for the platform module that at least calls eachWalter Dörwald2005-11-211-0/+74
| | | | documented function once.
* Fix typo.Walter Dörwald2005-11-211-1/+1
|
* Enable optional "const" argument to _New routines.Jack Jansen2005-11-211-2/+3
|
* Fix a few more memory leaksNeal Norwitz2005-11-204-3/+29
| | | | | Document more info about the benefits of configuring without pymalloc when running valgrind