1. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 17 years ago
  2. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  3. 86def6c Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from by Georg Brandl · 17 years ago
  4. e1c9811 Merged revisions 60143-60149 via svnmerge from by Christian Heimes · 17 years ago
  5. 9bd667a Merged revisions 60124-60142 via svnmerge from by Christian Heimes · 17 years ago
  6. 78b1187 Fix now-wrong :keyword: markup. Remove the section about by Georg Brandl · 17 years ago
  7. c31b0f7 Fix two oversights in C API split. by Georg Brandl · 17 years ago
  8. 7274858 Fix markup. by Georg Brandl · 17 years ago
  9. 54a3faa Split C API docs in Py3k branch. by Georg Brandl · 17 years ago
  10. 135bf20 Remove versionadded tag. by Georg Brandl · 17 years ago
  11. fdab48e Merged revisions 60094-60123 via svnmerge from by Christian Heimes · 17 years ago
  12. 825fc8b #1867: fix a few 3.0 incompatibilities in pydoc. by Georg Brandl · 17 years ago
  13. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
  14. 2336bdd Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowed by Facundo Batista · 17 years ago
  15. 587c2bf Merged revisions 60053-60078 via svnmerge from by Christian Heimes · 17 years ago
  16. bd84a58 Fix 3k's sphinx-build.py so that the version detection works with 2.x and 3.x. by Georg Brandl · 17 years ago
  17. 04c420f Merged revisions 60043-60052 via svnmerge from by Christian Heimes · 17 years ago
  18. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 17 years ago
  19. ff72122 Merged revisions 60001,60003-60004,60008 via svnmerge from by Thomas Heller · 17 years ago
  20. 9893de1 Update the py3k version of the rational module to expose only methods needed by by Jeffrey Yasskin · 17 years ago
  21. 3564146 Sync-up Queue.py with Py2.6 by Raymond Hettinger · 17 years ago
  22. bae82b8 __floordiv__ returns an int in 3.0. by Jeffrey Yasskin · 17 years ago
  23. 7736b5b Merged revisions 59952-59984 via svnmerge from by Guido van Rossum · 17 years ago
  24. ae138cb Refactor if/elif chain for clarity and speed by Raymond Hettinger · 17 years ago
  25. f7bd964 Patch #1830 by Peter Harris, fix some 2.x-isms. by Guido van Rossum · 17 years ago
  26. 386cd1e long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago by Christian Heimes · 17 years ago
  27. 62fe8a8 Fixed merge accident by Christian Heimes · 17 years ago
  28. da3caed Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping the Empty and Full exceptions. by Raymond Hettinger · 17 years ago
  29. d32ed6f Merged revisions 59933-59951 via svnmerge from by Christian Heimes · 17 years ago
  30. 1acde19 Take Tim's advice and have random.sample() support only sequences and sets. by Raymond Hettinger · 17 years ago
  31. 28de64f Remove defunct parts of the random module by Raymond Hettinger · 17 years ago
  32. f7ec7a8 Use bash, so echo -n will do the right thing. by Guido van Rossum · 17 years ago
  33. a62da1d Merged revisions 59921-59932 via svnmerge from by Christian Heimes · 17 years ago
  34. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  35. 222e127 Fix markup. by Georg Brandl · 17 years ago
  36. 3540b50 Good catch Neal! by Christian Heimes · 17 years ago
  37. 61ecb77 Added the test cases I actually meant to add. by Eric Smith · 17 years ago
  38. fc6e8fe Simplifed argument parsing in object.__format__, added test case. by Eric Smith · 17 years ago
  39. 0041223 Fixed print -> print() by Christian Heimes · 17 years ago
  40. 454f37b Merged revisions 59864-59882 via svnmerge from by Christian Heimes · 17 years ago
  41. 2380ac7 Merged revisions 59843-59863 via svnmerge from by Christian Heimes · 17 years ago
  42. 790c823 Merged revisions 59822-59841 via svnmerge from by Christian Heimes · 17 years ago
  43. 0625e89 Always define Py_USING_UNICODE, 3rd party software may depend on it. A missing declaration can lead to strange bugs as I had to learn the hard way in the upcoming merge by Christian Heimes · 17 years ago
  44. 3b06e53 Another patch for #1762972: __file__ points to the py file instead pyo/pyc file by Christian Heimes · 17 years ago
  45. a38f73b Fix issue1753: TextIOWrapper.write writes utf BOM for every string. by Alexandre Vassalotti · 17 years ago
  46. 52d168a Remove traces of Py_USING_UNICODE and Unicode-specific conditionals in configure. by Georg Brandl · 17 years ago
  47. 22ec03c Fix merge glitch. by Georg Brandl · 17 years ago
  48. 043d6f6 Copied doc for reload() from trunk's function.rst to imp.rst by Christian Heimes · 17 years ago
  49. 13a7a21 Issue #1762972: Readded the reload() function as imp.reload() by Christian Heimes · 17 years ago
  50. 8de8e03 Remove paragraph about old-style classes. by Georg Brandl · 17 years ago
  51. 59d6916 Fix reverse Ximenez symptom. by Georg Brandl · 17 years ago
  52. 60fe2f1 Fix note markup. by Georg Brandl · 17 years ago
  53. fd85516 Remove obsolete note. by Georg Brandl · 17 years ago
  54. ad433db Clean up PyString_Size(). by Alexandre Vassalotti · 17 years ago
  55. 5dfe0de Missed one because of indirection. by Georg Brandl · 17 years ago
  56. 50da60c The final occurrences of exception slicing. by Georg Brandl · 17 years ago
  57. d11b68a Fix more exception slicing. by Georg Brandl · 17 years ago
  58. 7357c23 Fix exception slicing. by Georg Brandl · 17 years ago
  59. 74f3669 Use consistent note numbers. by Georg Brandl · 17 years ago
  60. a6fa272 Clarify sentence in tutorial. Thanks to Marek Kubica. by Georg Brandl · 17 years ago
  61. 7f04431 Merged revisions 59774-59783 via svnmerge from by Christian Heimes · 17 years ago
  62. faf2f63 Merged revisions 59703-59773 via svnmerge from by Christian Heimes · 17 years ago
  63. e239b00 Add some missing news. Add some periods. by Guido van Rossum · 17 years ago
  64. 472f07d Add unit tests for the newlines property of IncrementalNewlineDecoder. by Alexandre Vassalotti · 17 years ago
  65. ab078dd Issue #1393: object_richcompare() returns NotImplemented instead of by Guido van Rossum · 17 years ago
  66. 673f7ef Fix bug introduced by r59746. by Georg Brandl · 17 years ago
  67. 60bad0e Big fat todo. by Georg Brandl · 17 years ago
  68. c3db090 Set native svn:eol-style property for text files. by Georg Brandl · 17 years ago
  69. 54fab81 Remove versionadded/changed directives merged as an oversight. by Georg Brandl · 17 years ago
  70. c215583 Make math.floor and math.ceil return ints instead of floats. by Jeffrey Yasskin · 17 years ago
  71. d348b25 Remove several mentions of old Python versions that don't apply anymore. by Georg Brandl · 17 years ago
  72. 84df79b Typo. by Georg Brandl · 17 years ago
  73. 0c95e71 Remove dead code brought in by merge glitch @ r59667 by Kurt B. Kaiser · 17 years ago
  74. 8eb45a3 Fix merge glitch. by Guido van Rossum · 17 years ago
  75. 43b1509 Interpreter wasn't displaying the location of a SyntaxError Issue1692 by Kurt B. Kaiser · 17 years ago
  76. 4c3eda3 And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks Hiro! by Christian Heimes · 17 years ago
  77. c36625b Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word by Christian Heimes · 17 years ago
  78. 8fd7b0c Fixed #1733: Maybe PC/VS7.1/pythoncore.vcproj is missing Modules/md5module.c by Christian Heimes · 17 years ago
  79. 1aa7b30 Fixed test_long by Christian Heimes · 17 years ago
  80. 3f419af Merged revisions 59696-59702 via svnmerge from by Christian Heimes · 17 years ago
  81. a34706f Merged revisions 59680-59695 via svnmerge from by Christian Heimes · 17 years ago
  82. bccd63c NEWS entry for r59682. by Amaury Forgeot d'Arc · 17 years ago
  83. 2e1d0f0 Fixed unichr() -> chr() by Christian Heimes · 17 years ago
  84. d6179e1 On Windows, when import fails to load a dll module, the message says by Amaury Forgeot d'Arc · 17 years ago
  85. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  86. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  87. 1c9f437 Show in the sys.version string (bot not elsewhere) that this is more by Guido van Rossum · 17 years ago
  88. 57dddfb Merged revisions 59642-59665 via svnmerge from by Christian Heimes · 17 years ago
  89. ba3febc Fixed merge accident by Christian Heimes · 17 years ago
  90. 7c086c0 Get rid of raw_input() emulation, use its reincarnation as input(). by Guido van Rossum · 17 years ago
  91. 83210b9 Fix issue #1707. When raw_input() was removed, it was incorrectly replaced by Guido van Rossum · 17 years ago
  92. cfb8333 Patch #1703 by Philip Jenvey -- getpass() should flush after writing prompt. by Guido van Rossum · 17 years ago
  93. d9a4d1d Merged revisions 59628-59641 via svnmerge from by Christian Heimes · 17 years ago
  94. f5243f0 Merge changes from 59576 from trunk to p3yk branch; these were skipped by Guido van Rossum · 17 years ago
  95. a9de06d Removed doubledigit from Makefile by Christian Heimes · 17 years ago
  96. b6b3ecc Fixed svn merge issues by Christian Heimes · 17 years ago
  97. 41be35d Merged revisions 59625-59627 via svnmerge from by Christian Heimes · 17 years ago
  98. 7a001bc Fixed svn:ignore by Christian Heimes · 17 years ago
  99. 5b5e81c Merged revisions 59605-59624 via svnmerge from by Christian Heimes · 17 years ago
  100. 862543a Don't close sys.stdin with quit() if sys.stdin wraps fd 0. Otherwise it will raise a warning: Lib/io.py:1221: RuntimeWarning: Trying to close unclosable fd by Christian Heimes · 17 years ago