summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Remove import string and use string methodsNeal Norwitz2005-11-201-4/+3
|
* Last batch of ref leaks in new AST code.Neal Norwitz2005-11-192-29/+58
| | | | | | Also converted a bunch of assert(0) to SystemError's. There are still printfs, etc that need to be cleaned up.
* Fix up incomplete sentenceAndrew M. Kuchling2005-11-191-1/+1
|
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-1813-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örwald2005-11-181-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örwald2005-11-172-2/+150
|
* don't get me started about distutils...Skip Montanaro2005-11-171-0/+1
|
* note build workaround for Sol10/gcc 3.4Skip Montanaro2005-11-171-0/+6
|
* Fix typo in commentWalter Dörwald2005-11-171-1/+1
| | | | (reported on the pydotorg mailing list).
* Add tests for various error cases and for readbuffer_encode() andWalter Dörwald2005-11-172-2/+72
| | | | | charbuffer_encode(). This increases code coverage in Modules/_codecsmodule.c from 83% to 95%.
* Correctly handle identifiers for anonymous scopes and align genexpr name ↵Nick Coghlan2005-11-161-11/+17
| | | | with symtable.c
* Bring handling of genexpr in line with other anonymous scope namesNick Coghlan2005-11-161-4/+3
|
* add more docNeal Norwitz2005-11-161-1/+22
|
* Fix some more memory leaks.Neal Norwitz2005-11-161-6/+11
| | | | | | Call error_ret() in decode_str(). It was called in some other places, but seemed inconsistent. It is safe to call PyTokenizer_Free() after calling error_ret().
* version was not initialized properlyNeal Norwitz2005-11-161-0/+1
|
* Better indentation after first line of string continuation.Kurt B. Kaiser2005-11-153-5/+20
| | | | IDLEfork Patch 681992, Noam Raphael
* Fix another memory leak or two (one real, one potential)Neal Norwitz2005-11-151-1/+2
|
* Add a note about how to do the memory deallocation a bit.Neal Norwitz2005-11-151-0/+20
| | | | This needs a lot of work.
* Fix a whole bunch of potential memory leaks (and some real ones too)Neal Norwitz2005-11-151-81/+206
| | | | in error conditions.
* Prevent unlikely memory leak, tok should always be freed when parsetok() returnsNeal Norwitz2005-11-151-0/+1
|