1. dd4c398 Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 18 years ago
  2. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  3. 10525ad Fix integer negation and absolute value to not rely by Martin v. Löwis · 18 years ago
  4. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  5. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  6. 8e24a96 Whitespace normalization. by Tim Peters · 18 years ago
  7. d336e98 Don't produce output in test_builtin. by Georg Brandl · 18 years ago
  8. 7e3ba2a Bug #1535165: fixed a segfault in input() and raw_input() when by Georg Brandl · 18 years ago
  9. fcfff0a Bug #1417699: Reject locale-specific decimal point in float() and atof(). by Martin v. Löwis · 18 years ago
  10. 215f13d Normalized a few cases of whitespace in function declarations. by Martin Blais · 18 years ago
  11. 696cf43 Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. by Tim Peters · 18 years ago
  12. b713ec2 Bug #1334662 / patch #1335972: int(string, base) wrong answers. by Tim Peters · 18 years ago
  13. de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 18 years ago
  14. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 18 years ago
  15. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  16. b82cb8d Part of bug 1459808: fiddle test_input_and_raw_input() so it passes w/ -Qnew. by Tim Peters · 18 years ago
  17. ed1e497 Correct test_builtin locale handling. by Georg Brandl · 19 years ago
  18. e7214a1 Get float() to be more portable across platforms. Disable hex strings. by Neal Norwitz · 19 years ago
  19. ede187f Test another error case in PyFloat_FromString(). by Walter Dörwald · 19 years ago
  20. fcf4435 Improve test coverage. Hope the test_file changes work the same on windows. by Neal Norwitz · 19 years ago
  21. 5898fa2 improve test coverage in Python/pystrtod.c and Python/mystrtoul.c. by Neal Norwitz · 19 years ago
  22. 4e41a4b Disable a few other tests, that can't work if Python is compiled without by Walter Dörwald · 19 years ago
  23. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  24. 96229b1 Add two new functions, any() and all(). by Raymond Hettinger · 19 years ago
  25. fee7b93 Use decorators. by Guido van Rossum · 20 years ago
  26. 7f06187 Whitespace normalization. by Tim Peters · 20 years ago
  27. 3b0c7c2 SF patch #1077353: add key= argument to min and max by Raymond Hettinger · 20 years ago
  28. 5ea7e31 Improve test coverage. by Raymond Hettinger · 20 years ago
  29. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  30. 4c989dd Subclasses of string can no longer be interned. The semantics of by Jeremy Hylton · 20 years ago
  31. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  32. 66bd233 Completed the patch for Bug #215126. by Raymond Hettinger · 20 years ago
  33. 513ffe8 * Fix missing return after error message is set. by Raymond Hettinger · 20 years ago
  34. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  35. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  36. ff83c2b Fix input() builtin function to respect compiler flags. by Hye-Shik Chang · 20 years ago
  37. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  38. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  39. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  40. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  41. c8cb5d9 Make a copy of L before appending, so the global L remains by Walter Dörwald · 21 years ago
  42. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
  43. 5edd785 Port test_complex.py to unittest. by Walter Dörwald · 21 years ago
  44. 91bbd9a Used sets.Set() to compare unordered sequences. Improves clarity and brevity. by Raymond Hettinger · 21 years ago
  45. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  46. a70b191 Adding new built-in function sum, with docs and tests. by Alex Martelli · 21 years ago
  47. 357981e Add a few errors tests for range(). by Walter Dörwald · 21 years ago
  48. 299b3df test_range(): The C code changed to raise TypeError in one of these by Tim Peters · 21 years ago
  49. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  50. f2715e0 Whitespace normalization. by Tim Peters · 21 years ago
  51. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 21 years ago
  52. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 21 years ago
  53. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 21 years ago
  54. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 21 years ago
  55. c3da83f Make sure filter() never returns tuple, str or unicode by Walter Dörwald · 21 years ago
  56. 5e61e24 Add a test that checks that filter() honors the sq_item slot for by Walter Dörwald · 21 years ago
  57. 903f1e0 filterstring() and filterunicode() in Python/bltinmodule.c by Walter Dörwald · 21 years ago
  58. abcb0c0 Fix SF bug# 676155, RuntimeWarning with tp_compare by Neal Norwitz · 21 years ago
  59. bf51707 Fix comment typos by Walter Dörwald · 21 years ago
  60. 8afd757 Patch #636005: Filter unicode into unicode. by Martin v. Löwis · 21 years ago
  61. 919497e Combine test_b1.py and test_b2.py into test_builtin.py, by Walter Dörwald · 21 years ago
  62. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  63. 3bead09 Initial revision by Guido van Rossum · 32 years ago