| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 |
| | | |||||
| * | Tweak note about using os.open to lock files if O_SHLOCK and O_EXLOCK are | Skip Montanaro | 2005-06-08 | 1 | -5/+5 |
| | | | | | present. | ||||
| * | [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 |
| | | |||||
| * | [Bug #1170422] Use correct option name | Andrew M. Kuchling | 2005-06-07 | 1 | -1/+1 |
| | | |||||
| * | Add a decimal FAQ | Raymond Hettinger | 2005-06-07 | 1 | -2/+155 |
| | | |||||
| * | 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 |
| | | |||||
| * | change set_bt_compare() callback comparison function to only take two | Gregory P. Smith | 2005-06-06 | 1 | -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 test | Gregory P. Smith | 2005-06-06 | 1 | -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. Smith | 2005-06-06 | 1 | -0/+1 |
| | | |||||
| * | test case for pybsddb SF bug id 1215432 | Gregory P. Smith | 2005-06-06 | 1 | -0/+50 |
| | | |||||
| * | fixes pybsddb SF bug id 1215432. DB.associate() would crash when a | Gregory P. Smith | 2005-06-06 | 1 | -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 pybsddb | Gregory P. Smith | 2005-06-06 | 1 | -12/+46 |
| | | | | | bug #1215432 | ||||
| * | Documentation clarified re. config socket listener protocol | Vinay Sajip | 2005-06-05 | 2 | -4/+7 |
| | | |||||
| * | Bug #1184380: extending&embedding example broken | Georg Brandl | 2005-06-05 | 1 | -1/+1 |
| | | |||||
| * | Fix missing assignments of marshal.load() values. Closes #1214662. | Skip Montanaro | 2005-06-04 | 1 | -7/+7 |
| | | |||||
| * | Bug #1210001: typo in email doc | Georg Brandl | 2005-06-04 | 1 | -1/+1 |
| | | |||||
| * | Bug #1196315: fix weakref.WeakValueDictionary constructor. | Georg Brandl | 2005-06-04 | 2 | -1/+3 |
| | | |||||
| * | Correct URL to the official UnicodeData 3.2.0 resource. (Reported | Hye-Shik Chang | 2005-06-04 | 2 | -2/+2 |
| | | | | | by Darek Suchojad) | ||||
| * | pybsddb 4.3.2: | Gregory P. Smith | 2005-06-04 | 3 | -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 Peters | 2005-06-03 | 4 | -195/+195 |
| | | |||||
| * | Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. | Georg Brandl | 2005-06-03 | 3 | -0/+16 |
| | | |||||
| * | Fix a couple of crashing-on-malformed data marshal bugs. | Michael W. Hudson | 2005-06-03 | 1 | -6/+8 |
| | | |||||
| * | [ 1197218 ] test_locale fix on modern linux | Anthony Baxter | 2005-06-03 | 1 | -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. Hudson | 2005-06-03 | 5 | -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 first | Georg Brandl | 2005-06-03 | 3 | -1/+24 |
| | | | | | component of the path. | ||||
| * | fix object.__divmod__.__doc__ | Anthony Baxter | 2005-06-03 | 1 | -2/+8 |
| | | | | | backport candidate | ||||
| * | M-x untabify | Michael W. Hudson | 2005-06-03 | 1 | -9/+9 |
| | | |||||
| * | Update permissions for Birkenfeld. | Raymond Hettinger | 2005-06-03 | 1 | -1/+2 |
| | | |||||
| * | pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison | Gregory P. Smith | 2005-06-03 | 4 | -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. Kuchling | 2005-06-02 | 1 | -6/+1 |
| | | | | | args is NULL | ||||
| * | [Bug #1209880] Describe only the True/False return values from lock.acquire() | Andrew M. Kuchling | 2005-06-02 | 2 | -4/+3 |
| | | |||||
| * | [Bug #1193001] Make the notation section use the same productionlist env. as ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -5/+5 |
| | | | | | other grammar rules | ||||
| * | [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one | Andrew M. Kuchling | 2005-06-02 | 1 | -0/+10 |
| | | |||||
| * | [Bug #1177831] Fix generation of code for GROUPREF_EXISTS. Thanks to Andre ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
| | | | | | Malo for the fix. | ||||
| * | Patch #1212117: Add optional attribute st_flags to os.stat_result | Hye-Shik Chang | 2005-06-02 | 6 | -3/+134 |
| | | | | | | when the member is available on the platform. (Contributed by Diego Petteno) | ||||
| * | Fix compiler.ast.flatten function so that it works on lists. | Neil Schemenauer | 2005-06-02 | 3 | -8/+13 |
| | | |||||
| * | [Bug #1152762] Ensure _end_of_line() returns an x-coordinate that's within ↵ | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
| | | | | | the text box | ||||
| * | added GET/SETANNOTATION methods | Piers Lauder | 2005-06-01 | 2 | -9/+46 |
| | | |||||
| * | [Bug #1105706] Use correct name for constant | Andrew M. Kuchling | 2005-06-01 | 1 | -2/+2 |
| | | |||||
| * | [Bug #1123268] Fix typo | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | | |||||
| * | [Bug #1181939] Remove incorrect text about __init__; move map discussion ↵ | Andrew M. Kuchling | 2005-06-01 | 1 | -5/+4 |
| | | | | | into a separate paragraph | ||||
| * | [Bug #1194249] Fix duplicate assignment in example code | Andrew M. Kuchling | 2005-06-01 | 1 | -1/+1 |
| | | |||||
| * | NEWS entry for the patch I checked in last week. | Michael W. Hudson | 2005-06-01 | 1 | -0/+4 |
| | | |||||
| * | SF bug #1209411: divmod documentation shd reference // not / | Raymond Hettinger | 2005-05-31 | 2 | -2/+2 |
| | | |||||
| * | SF bug #1202395: Description of string.lstrip() needs improvement | Raymond Hettinger | 2005-05-31 | 1 | -15/+33 |
| | | | | | Clarify the role of the chars argument in the strip() methods. | ||||
| * | Add permissions for Reinhold Birkenfeld. | Raymond Hettinger | 2005-05-28 | 1 | -0/+5 |
| | | |||||
| * | This is my patch: | Michael W. Hudson | 2005-05-27 | 5 | -251/+639 |
| | | | | | | | | | | | | | | | [ 1181301 ] make float packing copy bytes when they can which hasn't been reviewed, despite numerous threats to check it in anyway if noone reviews it. Please read the diff on the checkin list, at least! The basic idea is to examine the bytes of some 'probe values' to see if the current platform is a IEEE 754-ish platform, and if so _PyFloat_{Pack,Unpack}{4,8} just copy bytes around. The rest is hair for testing, and tests. | ||||
