summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_b1.py
Commit message (Expand)AuthorAgeFilesLines
* Combine test_b1.py and test_b2.py into test_builtin.py,Walter Dörwald2003-01-191-673/+0
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-191-6/+8
* Whitespace normalization.Tim Peters2002-11-091-13/+13
* Make int("...") return a long if an int would overflow.Walter Dörwald2002-11-061-7/+8
* TheTim Peters2002-10-081-1/+1
* The list(xrange(sys.maxint / 4)) test blew up on 64-bit platforms.Guido van Rossum2002-09-111-15/+21
* complex() was the only numeric constructor that created a new instanceRaymond Hettinger2002-08-291-0/+4
* More changes of DeprecationWarning to FutureWarning.Guido van Rossum2002-08-141-1/+1
* Bug #556025: list(xrange(1e9)) --> seg faultJason Tishler2002-08-131-0/+5
* Shut up warnings about hex()/oct() that can't be avoided.Guido van Rossum2002-08-121-0/+4
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Whitespace normalization.Tim Peters2002-07-161-2/+2
* Close SF bug 563740. complex() now finds __complex__() in new style classes.Raymond Hettinger2002-06-061-0/+11
* Closes: #556025 seg fault when doing list(xrange(1e9))Neal Norwitz2002-05-221-0/+11
* SF bug 543840: complex(string) accepts strings with \0Tim Peters2002-04-141-0/+13
* SF patch #523169, by Samuele Pedroni.Guido van Rossum2002-02-261-0/+10
* SF Patch #494874 add tests for int()/long() invalid parametersNeal Norwitz2001-12-291-0/+23
* Ensure that complex() only accepts a string argument as the first arg,Fred Drake2001-12-131-0/+8
* Additional coverage tests by Neil Norwitz.Guido van Rossum2001-12-111-0/+12
* The first batch of changes recommended by the fixdiv tool. These areGuido van Rossum2001-09-041-1/+1
* Use raw-unicode-escape for the tests that require it.Martin v. Löwis2001-08-171-2/+2
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-37/+55
* Add tests for getattr() and hasattr() with non-string argsJeremy Hylton2001-07-301-0/+18
* SF bug #444510: int() should guarantee truncation.Tim Peters2001-07-261-0/+13
* SF bug 434186: 0x80000000/2 != 0x80000000>>1Tim Peters2001-06-181-0/+7
* OK, changed my mind once more on this. The comparison hierarchy isGuido van Rossum2001-01-221-1/+1
* Numeric-smelling objects now once again compare smaller thanGuido van Rossum2001-01-221-1/+1
* Add test that ensures hash([]) and hash({}) raise TypeError.Guido van Rossum2001-01-181-0/+6
* When a PyCFunction that takes only positional parameters is called withFred Drake2001-01-041-0/+11
* Numbers no longer compare smaller than all other types. Fix the onlyNeil Schemenauer2001-01-041-1/+2
* Actually call the object with an __call__ method, instead of justJeremy Hylton2001-01-031-0/+1
* Update the code to better reflect recommended style:Fred Drake2000-12-121-127/+127
* This patch adds a new Python C API called PyString_AsStringAndSize()Marc-André Lemburg2000-09-191-0/+12
* Applying patch #100994 to allow JPython to use more of the standardBarry Warsaw2000-09-011-1/+1
* style nitsJeremy Hylton2000-08-231-4/+8
* Break the cycles after testing cmp() on cyclic objects.Vladimir Marangozov2000-07-141-0/+2
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
* Fix PR#7 comparisons of recursive objectsJeremy Hylton2000-04-141-0/+9
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-2/+35
* Add tests for float() and complex() with string args (Nick/StephanieGuido van Rossum1999-03-251-0/+2
* Added a new test for old filter() memory leakBarry Warsaw1999-01-281-0/+17
* Nannified, and re-indented with 4 spaces.Guido van Rossum1998-08-101-88/+88
* Improved test set for int() and long() string conversions.Guido van Rossum1998-06-301-0/+59
* With the recent change that makes numbers compare smaller than anything,Guido van Rossum1998-06-111-3/+3
* Added tests of the new builtin functions issubclass() and isinstance()Barry Warsaw1997-08-221-0/+36
* Fix hex tests for 64-bit machines.Guido van Rossum1997-05-141-1/+3
* Added test of complex() (that catches a bug in 1.4!).Guido van Rossum1997-03-311-0/+39
* updated the hex(-16) test since hex() of a signed literal has changed.Barry Warsaw1997-01-131-1/+1
* avoid math, don't abort when overflow check failsGuido van Rossum1995-03-041-1/+5
* * Lib/test/test_b1.py: test eval() and execfile() with globals,Guido van Rossum1995-01-021-0/+13