| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Whitespace normalization. Leaving tokenize_tests.py alone for now. | Tim Peters | 2001-01-18 | 1 | -1/+0 |
| | | |||||
| * | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -2/+2 |
| | | | | | 'verify' iff it's used by a test module... | ||||
| * | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
| * | Change expected message for ValueError, fixing bug #126400 | Andrew M. Kuchling | 2000-12-20 | 1 | -1/+1 |
| | | |||||
| * | Add test case for error message raised by bad % format character | Andrew M. Kuchling | 2000-12-15 | 1 | -0/+25 |
| | | | | | (Oh, look, it adds another little utility function for testing) | ||||
| * | Fox for SF bug #123859: %[duxXo] long formats inconsistent. | Tim Peters | 2000-11-30 | 1 | -5/+16 |
| | | |||||
| * | Derived from Martin's SF patch 110609: support unbounded ints in ↵ | Tim Peters | 2000-09-21 | 1 | -23/+136 |
| | | | | | | | | | | | | | | | | | %d,i,u,x,X,o formats. Note a curious extension to the std C rules: x, X and o formatting can never produce a sign character in C, so the '+' and ' ' flags are meaningless for them. But unbounded ints *can* produce a sign character under these conversions (no fixed- width bitstring is wide enough to hold all negative values in 2's-comp form). So these flags become meaningful in Python when formatting a Python long which is too big to fit in a C long. This required shuffling around existing code, which hacked x and X conversions to death when both the '#' and '0' flags were specified: the hacks weren't strong enough to deal with the simultaneous possibility of the ' ' or '+' flags too, since signs were always meaningless before for x and X conversions. Isomorphic shuffling was required in unicodeobject.c. Also added dozens of non-trivial new unbounded-int test cases to test_format.py. | ||||
| * | Marc-Andre Lemburg <mal@lemburg.com>: | Marc-André Lemburg | 2000-06-30 | 1 | -0/+52 |
| New test for huge formatting strings (these could cause core dumps in previous versions). By Trent Mick. | |||||
