| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue 2235: Py3k warnings are now emitted for classes that will no longer inh... | Nick Coghlan | 2008-08-11 | 1 | -0/+1 |
|
|
* | #3479: unichr(2**32) used to return u'\x00'. | Amaury Forgeot d'Arc | 2008-07-31 | 1 | -0/+1 |
|
|
* | Revert 64424, 64438, and 64439. | Raymond Hettinger | 2008-06-24 | 1 | -27/+0 |
|
|
* | Issue 3008: hex/oct/bin can show floats exactly. | Raymond Hettinger | 2008-06-21 | 1 | -0/+27 |
|
|
* | revert 63425 over Guido's Febuary message about this, that I missed | Benjamin Peterson | 2008-05-17 | 1 | -4/+0 |
|
|
* | add Py3k warnings to oct and hex. backport hex behavior (because it's not dif... | Benjamin Peterson | 2008-05-17 | 1 | -0/+4 |
|
|
* | #2196 hasattr now allows SystemExit and KeyboardInterrupt to propagate | Benjamin Peterson | 2008-05-12 | 1 | -0/+10 |
|
|
* | Moved testing of builtin types out of test_builtin and into type specific mod... | Benjamin Peterson | 2008-05-03 | 1 | -692/+0 |
|
|
* | #2719: backport next() from 3k. | Georg Brandl | 2008-04-30 | 1 | -0/+27 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 1 | -0/+45 |
|
|
* | Tests for bin() builtin. These need to get merged into py3k, which has no te... | Eric Smith | 2008-02-22 | 1 | -0/+9 |
|
|
* | Moved test_format into the correct TestCase. | Eric Smith | 2008-02-21 | 1 | -39/+39 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+95 |
|
|
* | Rename rational.Rational to fractions.Fraction, to avoid name clash | Mark Dickinson | 2008-02-10 | 1 | -2/+2 |
|
|
* | Make int() and long() fall back to __trunc__(). See issue 2002. | Jeffrey Yasskin | 2008-02-04 | 1 | -0/+102 |
|
|
* | Test round-trip on float.as_integer_ratio() and float.__truediv__(). | Raymond Hettinger | 2008-02-01 | 1 | -0/+6 |
|
|
* | Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. | Raymond Hettinger | 2008-02-01 | 1 | -0/+8 |
|
|
* | Move __builtins__.trunc() to math.trunc() per | Jeffrey Yasskin | 2008-02-01 | 1 | -32/+0 |
|
|
* | Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because | Jeffrey Yasskin | 2008-01-27 | 1 | -1/+20 |
|
|
* | Fix #1679: "0x" was taken as a valid integer literal. | Georg Brandl | 2008-01-19 | 1 | -0/+5 |
|
|
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 1 | -13/+11 |
|
|
* | Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000 | Guido van Rossum | 2008-01-05 | 1 | -0/+6 |
|
|
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 1 | -1/+74 |
|
|
* | Patch #1444529: the builtin compile() now accepts keyword arguments. | Georg Brandl | 2007-03-13 | 1 | -0/+9 |
|
|
* | Backport from Py3k branch: | Georg Brandl | 2007-03-12 | 1 | -4/+59 |
|
|
* | Patch #1638879: don't accept strings with embedded NUL bytes in long(). | Georg Brandl | 2007-03-06 | 1 | -0/+5 |
|
|
* | Bug #1545497: when given an explicit base, int() did ignore NULs | Georg Brandl | 2006-10-12 | 1 | -0/+5 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -2/+9 |
|
|
* | Fix integer negation and absolute value to not rely | Martin v. Löwis | 2006-10-04 | 1 | -0/+1 |
|
|
* | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 1 | -0/+4 |
|
|
* | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 1 | -0/+9 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-08-09 | 1 | -1/+1 |
|
|
* | Don't produce output in test_builtin. | Georg Brandl | 2006-08-06 | 1 | -2/+2 |
|
|
* | Bug #1535165: fixed a segfault in input() and raw_input() when | Georg Brandl | 2006-08-06 | 1 | -0/+8 |
|
|
* | Bug #1417699: Reject locale-specific decimal point in float() | Martin v. Löwis | 2006-07-03 | 1 | -3/+14 |
|
|
* | Normalized a few cases of whitespace in function declarations. | Martin Blais | 2006-06-06 | 1 | -1/+1 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 1 | -0/+75 |
|
|
* | Bug #1334662 / patch #1335972: int(string, base) wrong answers. | Tim Peters | 2006-05-23 | 1 | -0/+78 |
|
|
* | Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. | Georg Brandl | 2006-04-30 | 1 | -24/+12 |
|
|
* | Fix __import__("") to raise ValueError rather than return None. | Thomas Wouters | 2006-04-04 | 1 | -0/+1 |
|
|
* | Patch #1460496: round() now accepts keyword arguments. | Georg Brandl | 2006-03-31 | 1 | -0/+3 |
|
|
* | Part of bug 1459808: fiddle test_input_and_raw_input() | Tim Peters | 2006-03-28 | 1 | -2/+10 |
|
|
* | Correct test_builtin locale handling. | Georg Brandl | 2006-01-09 | 1 | -1/+1 |
|
|
* | Get float() to be more portable across platforms. Disable hex strings. | Neal Norwitz | 2005-12-18 | 1 | -2/+4 |
|
|
* | Test another error case in PyFloat_FromString(). | Walter Dörwald | 2005-11-29 | 1 | -0/+2 |
|
|
* | Improve test coverage. Hope the test_file changes work the same on windows. | Neal Norwitz | 2005-11-27 | 1 | -0/+13 |
|
|
* | improve test coverage in Python/pystrtod.c and Python/mystrtoul.c. | Neal Norwitz | 2005-11-22 | 1 | -0/+29 |
|
|
* | Disable a few other tests, that can't work if Python is compiled without | Walter Dörwald | 2005-08-03 | 1 | -5/+14 |
|
|
* | Make subclasses of int, long, complex, float, and unicode perform type | Brett Cannon | 2005-04-26 | 1 | -0/+97 |
|
|
* | Add two new functions, any() and all(). | Raymond Hettinger | 2005-03-11 | 1 | -0/+36 |
|
|