Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | SF #1022953: binascii.a2b_hqx("") raises SystemError | Raymond Hettinger | 2004-09-06 | 2 | -5/+26 |
| | | | | | | | | | | | | | Several functions adopted the strategy of altering a full lengthed string copy and resizing afterwards. That would fail if the initial string was short enough (0 or 1) to be interned. Interning precluded the subsequent resizing operation. The solution was to make sure the initial string was at least two characters long. Added tests to verify that all binascii functions do not crater when given an empty string argument. | ||||
* | Fix erroneous docstring comment. | Raymond Hettinger | 2004-09-06 | 3 | -6/+9 |
| | |||||
* | Add test_difflib_expect.html. | Martin v. Löwis | 2004-09-06 | 1 | -5/+6 |
| | | | | | Fix open Verbs. Properly add "Edit with IDLE" to TclTk feature. | ||||
* | Markup nits. | Raymond Hettinger | 2004-09-06 | 1 | -4/+6 |
| | |||||
* | Add missing close parenthesis. | Raymond Hettinger | 2004-09-06 | 1 | -3/+3 |
| | |||||
* | SF bug #901654: split method documentation can be improved | Raymond Hettinger | 2004-09-06 | 1 | -2/+16 |
| | | | | | | | * Discuss the algorithmic distinctions between s.split() and s.split(sep). * Document the split behavior for empty strings. * Note the behavior when maxsplit is zero. * Include short examples. | ||||
* | Rework some wording. | Brett Cannon | 2004-09-05 | 1 | -1/+1 |
| | |||||
* | Fulfill Martin's request to use try/except rather than a "look before | Raymond Hettinger | 2004-09-05 | 2 | -18/+13 |
| | | | | you leap" approach. Makes the early call to os.urandom() unnecessary. | ||||
* | Teach a test about the different kinds of functions. | Raymond Hettinger | 2004-09-04 | 1 | -2/+2 |
| | |||||
* | SF bug #1020540: a wrong link from "frame object" in lib index | Raymond Hettinger | 2004-09-04 | 1 | -3/+4 |
| | |||||
* | SF bug #1022010: Import random fails | Raymond Hettinger | 2004-09-04 | 1 | -3/+6 |
| | | | | | * Complete the previous patch by making sure that the MachineRandom tests are only run when the underlying resource is available. | ||||
* | Change the strategy for coping with time intensive tests from | Raymond Hettinger | 2004-09-04 | 2 | -8/+17 |
| | | | | | | | | "all or none" to "all or some". This provides much greater test coverage without eating much time. It also makes it more likely that routine regression testing will unearth bugs. | ||||
* | Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explained | Tim Peters | 2004-09-04 | 3 | -32/+116 |
| | | | | | | | | in the new docs. DocTestRunner.__run: Separate the determination of the example outcome from reporting that outcome, to squash brittle code duplication and excessive nesting. | ||||
* | Added a couple names to __all__. | Tim Peters | 2004-09-04 | 1 | -0/+2 |
| | |||||
* | SF bug 1017405: the keys() values() and items() DB methods were | Gregory P. Smith | 2004-09-04 | 1 | -1/+1 |
| | | | | ignoring their transaction (txn) argument. | ||||
* | Minor aesthetic change in sre_parse.py, as suggested by Mike Coleman. | Gustavo Niemeyer | 2004-09-03 | 1 | -2/+2 |
| | |||||
* | SF bug #1022010: Import random fails | Raymond Hettinger | 2004-09-03 | 1 | -1/+2 |
| | | | | | * trap NotImplementedError raised by os.urandom calls when not available on a particular system. | ||||
* | Fixing bug #817234, which made SRE get into an infinite loop on | Gustavo Niemeyer | 2004-09-03 | 2 | -5/+19 |
| | | | | | empty final matches with finditer(). New test cases included for this bug and for #581080. | ||||
* | Applying modified version of patch #1018386, which fixes | Gustavo Niemeyer | 2004-09-03 | 3 | -43/+91 |
| | | | | some escaping bugs in SRE. | ||||
* | Add main program for icon file. | Martin v. Löwis | 2004-09-03 | 1 | -0/+6 |
| | |||||
* | Make the api of the _dispatch() method more concrete. I have no idea if | Skip Montanaro | 2004-09-03 | 1 | -2/+7 |
| | | | | | | this is the right way to document such things (Fred, help me out here :-), but I got misled by the existing documentation and assumed the parameter list was a *args sort of thing. | ||||
* | This commit was manufactured by cvs2svn to create tag 'r24a3'.v2.4a3 | cvs2svn | 2004-09-02 | 1 | -0/+1 |
| | |||||
* | update version | Anthony Baxter | 2004-09-02 | 2 | -2/+2 |
| | |||||
* | release date | Anthony Baxter | 2004-09-02 | 1 | -1/+1 |
| | |||||
* | Update buildno for 2.4a3 | Martin v. Löwis | 2004-09-01 | 2 | -3/+5 |
| | |||||
* | Conditionalize Tcl feature | Martin v. Löwis | 2004-09-01 | 1 | -35/+57 |
| | |||||
* | [Bug #1011606] Only check file descriptors for exceptional conditions if the ↵ | Andrew M. Kuchling | 2004-09-01 | 1 | -4/+10 |
| | | | | fd is readable or writable | ||||
* | Whitespace normalization. | Tim Peters | 2004-09-01 | 3 | -5/+5 |
| | |||||
* | SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes | Raymond Hettinger | 2004-09-01 | 5 | -17/+8 |
| | | | | (Contributed by Dima Dorfman) | ||||
* | - add missing \end{seealso} | Fred Drake | 2004-09-01 | 1 | -1/+4 |
| | | | | - wrap long line | ||||
* | Remove rotor from the build. | Raymond Hettinger | 2004-08-31 | 1 | -15/+0 |
| | |||||
* | Remove rotor and xreadlines from VC 6 build. | Raymond Hettinger | 2004-08-31 | 1 | -8/+0 |
| | |||||
* | Add instructions for building Tix | Martin v. Löwis | 2004-08-31 | 1 | -0/+9 |
| | |||||
* | Fix installdir for Tix | Martin v. Löwis | 2004-08-31 | 1 | -1/+1 |
| | |||||
* | Remove rotor and xreadlines from VC 7.1 build. | Tim Peters | 2004-08-31 | 2 | -58/+0 |
| | |||||
* | Add item | Andrew M. Kuchling | 2004-08-31 | 1 | -0/+3 |
| | |||||
* | Remove rotor, xreadlines modules | Andrew M. Kuchling | 2004-08-31 | 1 | -8/+0 |
| | |||||
* | Add news item. | Andrew M. Kuchling | 2004-08-31 | 1 | -0/+3 |
| | |||||
* | Remove mpz, rotor, xreadlines modules | Andrew M. Kuchling | 2004-08-31 | 1 | -22/+1 |
| | |||||
* | Remove rotor reference | Andrew M. Kuchling | 2004-08-31 | 1 | -1/+1 |
| | |||||
* | Missed some occurrences of test_mpz | Andrew M. Kuchling | 2004-08-31 | 1 | -3/+0 |
| | |||||
* | Remove mpz, rotor | Andrew M. Kuchling | 2004-08-31 | 1 | -2/+1 |
| | |||||
* | Remove mpzpi demo | Andrew M. Kuchling | 2004-08-31 | 2 | -35/+0 |
| | |||||
* | Remove test output for rotor, xreadline | Andrew M. Kuchling | 2004-08-31 | 2 | -9/+0 |
| | |||||
* | Remove mpz, rotor, xreadlines modules | Andrew M. Kuchling | 2004-08-31 | 5 | -2533/+2 |
| | |||||
* | Remove rotor, xreadlines modules | Andrew M. Kuchling | 2004-08-31 | 1 | -2/+2 |
| | |||||
* | Remove test for mpz | Andrew M. Kuchling | 2004-08-31 | 1 | -89/+0 |
| | |||||
* | Remove tests for mpz, rotor, xreadlines | Andrew M. Kuchling | 2004-08-31 | 3 | -84/+0 |
| | |||||
* | Remove rotor license | Andrew M. Kuchling | 2004-08-31 | 1 | -28/+0 |
| | |||||
* | Remove docs for xreadlines, mpz, rotor | Andrew M. Kuchling | 2004-08-31 | 5 | -291/+0 |
| |