summaryrefslogtreecommitdiff
path: root/Lib/test/test_types.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 84320 via svnmerge fromBenjamin Peterson2010-08-251-0/+5
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-2/+6
* Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.Eric Smith2010-02-231-0/+32
* Remove unused imports in test modules.Georg Brandl2010-02-071-1/+0
* use assert[Not]In where appropriateEzio Melotti2010-01-231-2/+2
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-8/+1
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-1/+8
* Issue #7117, continued: Remove substitution of %g-style formatting forMark Dickinson2009-11-231-4/+19
* Fixed issue 5782: formatting with commas didn't work if no specifier type cod...Eric Smith2009-04-221-0/+6
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-221-2/+52
* Fix issue 3411: default float format spec fails on negative numbers.Eric Smith2008-07-191-0/+6
* Backed out r65069, pending fixing it in Windows.Eric Smith2008-07-171-10/+2
* Issue 3382: Make '%F' and float.__format__('F') convert results to upper case.Eric Smith2008-07-171-2/+10
* Complete issue 3083: add alternate (#) formatting to bin, oct, hex in str.for...Eric Smith2008-07-161-1/+12
* Added '#' formatting to integers. This adds the 0b, 0o, or 0x prefix for bin...Eric Smith2008-07-151-0/+41
* Fixed formatting with thousands separator and padding. Resolves issue 3140.Eric Smith2008-06-241-0/+8
* Addresses issue 2802: 'n' formatting for integers.Eric Smith2008-05-111-2/+13
* Issue 2526, float.__format__ 'n' specifier does not support thousands grouping.Eric Smith2008-04-301-1/+11
* Issue 2264: empty float presentation type needs to have at least one digit pa...Eric Smith2008-03-171-0/+9
* Trim leading zeros from a floating point exponent, per C99. See issue 1600. ...Eric Smith2008-02-201-7/+31
* Temporarily removed float tests. See issue 1600.Eric Smith2008-02-181-6/+7
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+251
* Convert test_types to unittest.Georg Brandl2006-10-291-283/+270
* Remove accidently committed, duplicated test.Thomas Heller2006-08-081-2/+0
* memcmp() can return values other than -1, 0, and +1 but tp_compareThomas Heller2006-08-081-0/+3
* Buffer objects would return the read or write buffer for a wrapped object whenBrett Cannon2006-06-081-0/+7
* RFE #1436243: make integers in [0..256] preallocated.Georg Brandl2006-02-221-0/+4
* Whitespace normalization.Tim Peters2004-09-241-1/+1
* Add yet more tests for buffer().Neil Schemenauer2004-09-241-0/+11
* Add a few more tests for the buffer() object.Neil Schemenauer2004-09-241-0/+8
* Port the dictionary tests from test_types.py to unittest. Collect as muchWalter Dörwald2004-05-311-227/+1
* SF #904720: dict.update should take a 2-tuple sequence like dict.__init_Raymond Hettinger2004-03-041-1/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Fix test failure message (from SF patch #885008)Walter Dörwald2004-02-061-1/+1
* Move list and tuple tests from test_types.py to their own scripts:Walter Dörwald2003-12-081-276/+3
* Use _PyEval_SliceIndex to handle list.index() calls withWalter Dörwald2003-06-171-0/+9
* Fix sloppy index() implementation:Guido van Rossum2003-06-171-2/+6
* SF #754014: list.index() should accept optional start, end argumentsRaymond Hettinger2003-06-171-0/+16
* Whitespace normalization.Tim Peters2003-05-121-4/+4
* SF bug #730296: Unexpected Changes in list IteratorRaymond Hettinger2003-05-071-4/+4
* SF bug 665835: filter() treatment of str and tuple inconsistentRaymond Hettinger2003-04-241-0/+12
* - bool() called without arguments now returns False rather thanGuido van Rossum2003-04-191-0/+10
* - list.insert(i, x) now interprets negative i as it would beGuido van Rossum2003-04-141-0/+5
* SF patch #693753: fix for bug 639806: default for dict.popRaymond Hettinger2003-03-061-1/+5
* Fix SF bug #689659, 64-bit int and long hash keys incompatibleNeal Norwitz2003-02-231-0/+8
* Cleaned up test (removing bogus argument list).Raymond Hettinger2002-12-071-2/+2
* Remove assumption that cls is a subclass of dict.Raymond Hettinger2002-12-071-3/+3
* The final tweaks before closingMichael W. Hudson2002-12-051-0/+4
* Replace BadInternalCall with TypeError. Add a test case. Fix whitespace.Raymond Hettinger2002-12-041-0/+7
* SF Patch 643443. Added dict.fromkeys(iterable, value=None), a classRaymond Hettinger2002-11-271-0/+28