1. 6c193fa Solve issue 1400 at least in part -- whenever we run Python code, at the end by Guido van Rossum · 17 years ago
  2. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  3. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  4. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  5. 7d2ff88 Merged revisions 59226-59233 via svnmerge from by Christian Heimes · 17 years ago
  6. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  7. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  8. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  9. 9a68f8c Moved the initalization of the exception before the initialization of sys. by Christian Heimes · 17 years ago
  10. db23308 Fixed space -> tab by Christian Heimes · 17 years ago
  11. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
  12. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  13. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
  14. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  15. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  16. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  17. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  18. c5724de get rid of some more PyString uses. by Guido van Rossum · 17 years ago
  19. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  20. 5deb210 Explicitly convert err->text to Unicode. Fixes #1069. by Martin v. Löwis · 17 years ago
  21. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  22. a369c5a Use unicode by Neal Norwitz · 17 years ago
  23. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  24. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  25. 1bd2122 Silence compiler warning. by Guido van Rossum · 17 years ago
  26. e8432ac Upon exit, flush stdout and stderr (twice: before and after the code that by Guido van Rossum · 17 years ago
  27. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  28. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  29. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  30. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  31. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  32. 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
  33. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 17 years ago
  34. 2633c69 Remove the exceptions builtin module, all the exceptions are already builtin. by Neal Norwitz · 17 years ago
  35. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 17 years ago
  36. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  37. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 17 years ago
  38. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  39. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  40. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  41. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  42. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  43. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  44. 712ce45 _Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer by Neal Norwitz · 18 years ago
  45. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  46. 9d78550 Address an coverity issue. Coverity was complaining about a line that's fine, by Guido van Rossum · 18 years ago
  47. f2e0c45 Fix warnings on x86 (32-bit). by Neal Norwitz · 18 years ago
  48. 99b93c2 Use %Id for size_t-ish things on Win64. by Martin v. Löwis · 18 years ago
  49. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  50. 9589ee2 Tabify by Neal Norwitz · 18 years ago
  51. e92fba0 Get rid of run_err_mod(). It was only used in two places. by Neal Norwitz · 18 years ago
  52. 2e63b73 Fix refleak in PyErr_Display(). by Brett Cannon · 18 years ago
  53. 056a69c Reconst parameters that lost their const in the AST merge. by Martin v. Löwis · 18 years ago
  54. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 18 years ago
  55. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  56. 2b366e4 Check whether there are flags. by Martin v. Löwis · 18 years ago
  57. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  58. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  59. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  60. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  61. b45b315 Patch #1350409: Port signal handling to VS 2005. by Martin v. Löwis · 19 years ago
  62. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  63. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  64. d35edda Forward UnicodeDecodeError into SyntaxError for source encoding errors. by Martin v. Löwis · 19 years ago
  65. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 19 years ago
  66. ba283e2 This is my patch: by Michael W. Hudson · 19 years ago
  67. 12b6f6c Move exception finalisation later in the shutdown process - this by Anthony Baxter · 19 years ago
  68. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  69. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  70. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 20 years ago
  71. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  72. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 20 years ago
  73. c2632a5 Patch #984714: Properly diagnose E_DECODE errors. Backported to 2.3. by Martin v. Löwis · 20 years ago
  74. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  75. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 20 years ago
  76. 5d2c683 Lost reference. by Armin Rigo · 20 years ago
  77. 7befb99 remove support for missing ANSI C header files (limits.h, stddef.h, etc). by Skip Montanaro · 20 years ago
  78. 1d7323e Py_Finalize(): disabled the second call of cyclic gc, and added extensive by Tim Peters · 21 years ago
  79. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  80. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  81. f56d015 Patch #804543: strdup saved locales. Backported to 2.3. by Martin v. Löwis · 21 years ago
  82. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  83. 68debc9 Fix refcounting and cut & paste error (?) in last checkin. by Michael W. Hudson · 21 years ago
  84. a2c17c5 Move initialization of sys.std{in,out}.encoding to Py_Initialize. by Martin v. Löwis · 21 years ago
  85. 5f4e8ca Correct previous patch looking for warnings module: sys.modules, not by Mark Hammond · 21 years ago
  86. edd0773 Fix [ 771097 ] frozen programs fail due to implicit import of "warnings". by Mark Hammond · 21 years ago
  87. 6cb9029 PyGILState cleanup was too early - destructors called via module cleanup may use the API. by Mark Hammond · 21 years ago
  88. cf615b5 handle_system_exit(): This leaked the current exception info, in by Tim Peters · 21 years ago
  89. 8d98d2c New PyGILState_ API - implements pep 311, from patch 684256. by Mark Hammond · 21 years ago
  90. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 21 years ago
  91. e13ddc9 - New C API PyGC_Collect(), same as calling gc.collect(). by Guido van Rossum · 21 years ago
  92. 66ebd91 A missing piece of the PEP 269 patch: add PyParser_SetError(), a by Guido van Rossum · 21 years ago
  93. d08e382 Trimmed trailing whitespace. by Tim Peters · 21 years ago
  94. 9cf25ce Py_Finalize(): Reverted recent changes that tried to move the by Tim Peters · 21 years ago
  95. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 21 years ago
  96. d922fa4 Move the call to _Py_PrintReferences() a bit further down. This by Guido van Rossum · 21 years ago
  97. 5c16c7b Move declaration of enc to scope where it is used by Neal Norwitz · 21 years ago
  98. 5ddd4c3 Fixed SF bug #663074. The codec system was using global static by Gustavo Niemeyer · 21 years ago
  99. 6a9a329 Declare all variables at the start of their scope. by Fred Drake · 21 years ago
  100. 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 21 years ago