summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1. Patch 1196895 Jeff Shute:Kurt B. Kaiser2005-06-125-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
* fix typo. \var vs \variableGregory P. Smith2005-06-111-1/+1
|
* Clarify docs about os.popen[234].Georg Brandl2005-06-101-2/+2
|
* Patch #1171150: add a newline to py_compile error outputGeorg Brandl2005-06-101-1/+1
|
* The functions audioop.lin2adpcm3() and audioop.adpcm32lin() were removed fromArmin Rigo2005-06-101-12/+0
| | | | this module in Jan 1994, but still documented.
* Add untokenize() function to allow full round-trip tokenization.Raymond Hettinger2005-06-105-7/+182
| | | | | | Should significantly enhance the utility of the module by supporting the creation of tools that modify the token stream and writeback the modified result.
* Minor tweaks, to allow some (out-of-tree, until successful) tinkeringJack Jansen2005-06-102-11/+15
| | | | with C++.
* [Bug #1200134] Fix buffer overflow by constraining size of .getstr(), ↵Andrew M. Kuchling2005-06-091-9/+13
| | | | .instr() to size of allocated buffer
* [Bug #1079134] Mention change to date comparisons; bump version info and ↵Andrew M. Kuchling2005-06-091-4/+10
| | | | release date to 2.4.1
* [Patch #1002763] Allow long ints as terminator values; also, treat a ↵Andrew M. Kuchling2005-06-091-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. Kuchling2005-06-091-14/+46
| | | | as the terminator
* [Bug #1074261, patch #1074381] Restrict the size of chunks read from the ↵Andrew M. Kuchling2005-06-092-2/+26
| | | | file in order to avoid overflow or huge memory consumption. Patch by Mark Eichin
* Convert gzip test suite to use unittestAndrew M. Kuchling2005-06-091-74/+110
|
* fix import to work with either module name.Gregory P. Smith2005-06-091-1/+6
|
* [Patch #1171487, bug #1170331] Fix error in base64.b32decode when encoding a ↵Andrew M. Kuchling2005-06-082-4/+12
| | | | single null byte; test a null byte in all encodings to be sure it works
* [Bug #1149413] 'psize' argument should be 'pgsize'Andrew M. Kuchling2005-06-081-2/+2
|
* fix broken (unexecuted) testAnthony Baxter2005-06-081-3/+3
|
* Tools/scripts/reindent.py _is_ your friendAnthony Baxter2005-06-085-119/+119
|
* Tweak note about using os.open to lock files if O_SHLOCK and O_EXLOCK areSkip Montanaro2005-06-081-5/+5
| | | | present.
* [Bug #1172763] dumbdbm uses eval() on lines, so it chokes if there's an ↵Andrew M. Kuchling2005-06-072-0/+19
| | | | extra \r on the end of a line; fixed by stripping off trailing whitespace.
* Minor namespace clean-up.Raymond Hettinger2005-06-071-2/+2
|
* [Bug #1170422] Use correct option nameAndrew M. Kuchling2005-06-071-1/+1
|
* Add a decimal FAQRaymond Hettinger2005-06-071-2/+155
|
* fix more Errors (not Failures) when run using BerkeleyDB <= 4.0Gregory P. Smith2005-06-061-4/+13
|
* fix Errors (not Failures) in test cases when running with BerkeleyDB<4.2Gregory P. Smith2005-06-061-32/+61
|
* change set_bt_compare() callback comparison function to only take twoGregory P. Smith2005-06-061-10/+7
| | | | | arguments (left, right) like any sane comparison function. no need to pass in the db object as an argument.
* make the tests that expect uncatchable exceptions from a callback testGregory P. Smith2005-06-061-19/+48
| | | | | | for them in a roundabout way (catching and parsing stderr) keeps test output clean.
* additional sanity check. secondaryDB cannot be closed.Gregory P. Smith2005-06-061-0/+1
|
* test case for pybsddb SF bug id 1215432Gregory P. Smith2005-06-061-0/+50
|
* fixes pybsddb SF bug id 1215432. DB.associate() would crash when aGregory P. Smith2005-06-061-5/+3
| | | | | | DBError was supposed to be raised. needs backport to 2.4.x and possibly 2.3.x.
* test DB.associate using transactions. somewhat related to SF pybsddbGregory P. Smith2005-06-061-12/+46
| | | | bug #1215432
* Documentation clarified re. config socket listener protocolVinay Sajip2005-06-052-4/+7
|
* Bug #1184380: extending&embedding example brokenGeorg Brandl2005-06-051-1/+1
|
* Fix missing assignments of marshal.load() values. Closes #1214662.Skip Montanaro2005-06-041-7/+7
|
* Bug #1210001: typo in email docGeorg Brandl2005-06-041-1/+1
|
* Bug #1196315: fix weakref.WeakValueDictionary constructor.Georg Brandl2005-06-042-1/+3
|
* Correct URL to the official UnicodeData 3.2.0 resource. (ReportedHye-Shik Chang2005-06-042-2/+2
| | | | by Darek Suchojad)
* pybsddb 4.3.2:Gregory P. Smith2005-06-043-33/+97
| | | | | | | | | | | * the has_key() method was not raising a DBError when a database error had occurred. [SF patch id 1212590] * added a wrapper for the DBEnv.set_lg_regionmax method [SF patch id 1212590] * DBKeyEmptyError now derives from KeyError just like DBNotFoundError. * internally everywhere DB_NOTFOUND was checked for has been updated to also check for DB_KEYEMPTY. This fixes the semantics of a couple operations on recno and queue databases to be more intuitive and results in less unexpected DBKeyEmptyError exceptions being raised.
* Whitespace normalization.Tim Peters2005-06-034-195/+195
|
* Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly.Georg Brandl2005-06-033-0/+16
|
* Fix a couple of crashing-on-malformed data marshal bugs.Michael W. Hudson2005-06-031-6/+8
|
* [ 1197218 ] test_locale fix on modern linuxAnthony Baxter2005-06-031-8/+10
| | | | | | | On more modern linuxes (and probably others) straight 'en_US' isn't a valid locale. Make the code try a couple of alternates. backport candidate
* This is my patch:Michael W. Hudson2005-06-035-68/+196
| | | | | | | | | [ 1180995 ] binary formats for marshalling floats Adds 2 new type codes for marshal (binary floats and binary complexes), a new marshal version (2), updates MAGIC and fiddles the de-serializing of code objects to be less likely to clobber the real reason for failing if it fails.
* Bug #1213894: os.path.realpath didn't resolve symlinks that were the firstGeorg Brandl2005-06-033-1/+24
| | | | component of the path.
* fix object.__divmod__.__doc__Anthony Baxter2005-06-031-2/+8
| | | | backport candidate
* M-x untabifyMichael W. Hudson2005-06-031-9/+9
|
* Update permissions for Birkenfeld.Raymond Hettinger2005-06-031-1/+2
|
* pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparisonGregory P. Smith2005-06-034-1/+381
| | | | | | functions written in python. contributed by <frederic.gobry@epfl.ch>
* Delete some vestigial code; execution will never reach the 'if' statement if ↵Andrew M. Kuchling2005-06-021-6/+1
| | | | args is NULL
* [Bug #1209880] Describe only the True/False return values from lock.acquire()Andrew M. Kuchling2005-06-022-4/+3
|