1. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  2. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  3. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  4. e9fd231 Make _load_testfile() use its encoding argument when __loader__ is defined. by Brett Cannon · 17 years ago
  5. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  6. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  7. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  8. 7046e97 Bug #1074: make python-config with Py3k. by Georg Brandl · 17 years ago
  9. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  10. cf1be88 Add some miscellanea. by Guido van Rossum · 17 years ago
  11. 2c7f314 Fix a typo and a trailing space. by Kurt B. Kaiser · 17 years ago
  12. 845702c Small updates. by Guido van Rossum · 17 years ago
  13. e7bf59f Run 2to3's print fixer over some places that had been missed. by Collin Winter · 17 years ago
  14. 4405cf3 Update Misc/NEWS. Add RELNOTES. by Guido van Rossum · 17 years ago
  15. 44c19f6 Get gdb macros working with unicode and PyVarObject change by Neal Norwitz · 17 years ago
  16. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  17. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  18. ed44a1a Merged revisions 57125-57128 via svnmerge from by Neal Norwitz · 17 years ago
  19. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  20. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  21. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  22. cb44f26 Support the new doc system. Also test_compiler was removed in 3k by Neal Norwitz · 17 years ago
  23. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  24. 967f1e3 Remove string.{letters,lowercase,uppercase}. by Martin v. Löwis · 17 years ago
  25. 0168802 Kill execfile(), use exec() instead by Neal Norwitz · 17 years ago
  26. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  27. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  28. f9b95d4 Patch #1768976, Fix for failing test_scriptpackages (untested but looks good) by Neal Norwitz · 17 years ago
  29. dd766d5 Move tempfile over to the io module. Makes test_threaded_import pass. by Brett Cannon · 17 years ago
  30. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  31. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  32. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  33. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  34. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  35. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  36. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 17 years ago
  37. c126e8a Merged revisions 55514-55544 via svnmerge from by Guido van Rossum · 17 years ago
  38. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  39. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  40. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  41. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  42. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  43. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  44. 5205653 Merged revisions 55184-55224 via svnmerge from by Guido van Rossum · 17 years ago
  45. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  46. 6cb726a Verify checkins to py3k branches go to 3000 list. by Neal Norwitz · 17 years ago
  47. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  48. 846f1ee Add a note to this file that it might be out of date and need some care. by Neal Norwitz · 17 years ago
  49. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  50. 9d72bb4 Remove functions in string module that are also string methods. Also remove: by Neal Norwitz · 17 years ago
  51. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  52. e27dc72 By default, != returns the opposite of ==, unless the latter returns by Guido van Rossum · 17 years ago
  53. 390d29c Remove isCallable() and sequenceIncludes() from the operator module. by Collin Winter · 17 years ago
  54. 670e692 Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also, reimplement atexit in C so it can take advantage of this private API. by Collin Winter · 17 years ago
  55. 801dd73 NEWS item for PEP 3115. by Georg Brandl · 17 years ago
  56. 428f064 Remove the deprecated and useless "pend" argument from by Georg Brandl · 17 years ago
  57. 44d7bee Add Mike Verdone (co-author of io.py and PEP 3116). by Guido van Rossum · 17 years ago
  58. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 17 years ago
  59. a4f9fc6 Add news about nonlocal statement by Jeremy Hylton · 17 years ago
  60. ba7bf49 Remove the ability to slice/index on exceptions per PEP 352. by Brett Cannon · 17 years ago
  61. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  62. 3959046 Make it so TypeError is raised if an instance of an object is put in an by Brett Cannon · 17 years ago
  63. 81fe341 The raw_input name was removed, but the implementation was moved to input. by Neal Norwitz · 17 years ago
  64. 3f54fea raw_input() really was removed, only input() was resurrected. by Neal Norwitz · 17 years ago
  65. 0240b92 Two more patches by Tony Lownds (SF# 1607548). by Guido van Rossum · 17 years ago
  66. f74225d You can no longer catch non-BaseException objects; TypeError is raised if such by Brett Cannon · 17 years ago
  67. a44f3a3 Merged revisions 53912-53951 via svnmerge from by Thomas Wouters · 17 years ago
  68. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  69. d4588c1 Get rid of some old TO TO items. by Guido van Rossum · 17 years ago
  70. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  71. 8b54536 News about softspace. by Guido van Rossum · 17 years ago
  72. 4502c80 Note that print is a function now. by Guido van Rossum · 17 years ago
  73. ec7027f Update news about int/long unification. by Guido van Rossum · 18 years ago
  74. 398db8b Add missing entry for PEP 3102 (keyword-only arguments). by Brett Cannon · 18 years ago
  75. 523d4f9 Fix the sqlite failure -- it was the usual, PyInt_Check -> PyInt_CheckExact. by Guido van Rossum · 18 years ago
  76. 018919a Merged revisions 53434 via svnmerge from by Guido van Rossum · 18 years ago
  77. ab18684 News about int/long unification and except syntax change. by Guido van Rossum · 18 years ago
  78. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  79. 893523e News about removal of the sets module. by Guido van Rossum · 18 years ago
  80. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  81. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  82. 66a796e Patch #1601678: move intern() to sys.intern(). by Georg Brandl · 18 years ago
  83. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  84. 6297128 replace references to __nonzero__ with __bool__ by Jack Diederich · 18 years ago
  85. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  86. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  87. 4e472e0 Fix comment for indenting in C files. by Brett Cannon · 18 years ago
  88. 378b2c9 Get rid of more coerce cruft, update NEWS by Neal Norwitz · 18 years ago
  89. 3bd844e Get rid of most of the remaining uses of <>. There's still Tools/* thogh. by Neal Norwitz · 18 years ago
  90. 0919a1a Part of SF patch #1513870 (the still relevant part) -- add reduce() to by Guido van Rossum · 18 years ago
  91. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  92. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  93. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  94. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  95. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  96. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  97. 1b283c5 Change C code to use 4-space indents. by Brett Cannon · 18 years ago
  98. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  99. ba617af Mention how __coerce__ has been removed. by Brett Cannon · 18 years ago
  100. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago