1. ae21df5 Undoing the UCS-4 patch addition which caused unichr() to return by Marc-André Lemburg · 23 years ago
  2. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  3. 7d4bb9f Add -E command line switch (ignore environment variables like PYTHONHOME by Neil Schemenauer · 23 years ago
  4. 03897ea Patch number #422106 by Greg Ball, to fix segmentation fault in sys.displayhook. by Moshe Zadka · 23 years ago
  5. f48f11c SF Patch #441791, with changes: when "import foo.bar" fails with an by Guido van Rossum · 23 years ago
  6. f5df46d Add a low-level API to access interpreters, for David Beazley. SF patch #436376. by Guido van Rossum · 23 years ago
  7. f0473d5 Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. by Martin v. Löwis · 23 years ago
  8. b1a77dd Deleting zombies by Guido van Rossum · 23 years ago
  9. e16c7ae jcompile(): inherit the CO_GENERATOR_ALLOWED flag from the 'base' by Guido van Rossum · 23 years ago
  10. a1b3a47 PyRun_StringFlags(): forgot to pass the flags on to by Guido van Rossum · 23 years ago
  11. fe2127d Ugly. A pile of new xxxFlags() functions, to communicate to the parser by Tim Peters · 23 years ago
  12. 51d76f1 future.c: insert a cosmetic space. by Tim Peters · 23 years ago
  13. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  14. b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
  15. f8c7c20 GC for generator objects. by Neil Schemenauer · 23 years ago
  16. efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
  17. cfd829e Complete the xrange-simplification checkins: call PyRange_New() with by Guido van Rossum · 23 years ago
  18. 0f9431f SF bug #438295: [Windows] __init__.py cause strange behavior by Tim Peters · 23 years ago
  19. 9e3ad78 This change adjusts the profiling/tracing support so that the common by Fred Drake · 23 years ago
  20. 08a898f Another "if 0:" hack, this time to complain about otherwise invisible by Tim Peters · 23 years ago
  21. 5755ce6 Revise the interface to the profiling and tracing support for the by Fred Drake · 23 years ago
  22. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  23. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  24. 236d8b7 Cosmetic changes to MvL's change to unichr(): by Guido van Rossum · 23 years ago
  25. e77f2e2 gen_getattr: make the gi_running and gi_frame members discoverable (but by Tim Peters · 23 years ago
  26. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  27. d8e1c9e Add "gi_" (generator-iterator) prefix to names of genobject members. by Tim Peters · 23 years ago
  28. 0dcf67e more unicode tweaks: make unichr(0xdddddddd) behave like u"\Udddddddd" by Fredrik Lundh · 23 years ago
  29. 5b97935 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  30. b6c3cea SF bug #436207: "if 0: yield x" is ignored. by Tim Peters · 23 years ago
  31. ad1a18b Change the semantics of "return" in generators, as discussed on the by Tim Peters · 23 years ago
  32. 5eb4b87 gen_iternext(): Don't assume that the current thread state's frame is by Tim Peters · 23 years ago
  33. 8c96369 PyFrameObject: rename f_stackbottom to f_stacktop, since it points to by Tim Peters · 23 years ago
  34. 95c80f8 Disallow 'yield' in a 'try' block when there's a 'finally' clause. by Tim Peters · 23 years ago
  35. d6d010b Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into by Tim Peters · 23 years ago
  36. 2b13ce8 Try to avoid creating reference cycles involving generators. Only keep a by Neil Schemenauer · 23 years ago
  37. 6302ec6 gen_iternext(): repair subtle refcount problem. by Tim Peters · 23 years ago
  38. 43afb24 Remove unused code. by Neil Schemenauer · 23 years ago
  39. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  40. d083839 Instead of initializing & interning the strings passed to the profile by Fred Drake · 23 years ago
  41. 239508c SF bug 433228: repr(list) woes when len(list) big by Tim Peters · 23 years ago
  42. 464fe3a Temporarily disable the message to stderr. Jeremy will know what to do by Marc-André Lemburg · 23 years ago
  43. 2a7f384 SF bug 430991: wrong co_lnotab by Tim Peters · 23 years ago
  44. 904aa7b call_trace(): Add an additional parameter -- pointer to a PyObject* by Fred Drake · 23 years ago
  45. 024da35 PyErr_Occurred(): Use PyThreadState_GET(), which saves a tiny function call by Tim Peters · 23 years ago
  46. 25916bd Change cascaded if stmts to switch stmt in vgetargs1(). by Jeremy Hylton · 23 years ago
  47. 1cb7aa3 Internal refactoring of convertsimple() and friends. by Jeremy Hylton · 23 years ago
  48. 4c9dace Fix bug reported by Tim Peters on python-dev: by Jeremy Hylton · 23 years ago
  49. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  50. 3c6b148 SF bug #425836: Reference leak in filter(). by Tim Peters · 23 years ago
  51. d657303 Fix whitespace botch. by Fred Drake · 23 years ago
  52. 0f8117f vgetargs1() and vgetargskeywords(): Replace uses of PyTuple_Size() and by Jeremy Hylton · 23 years ago
  53. da20fce Add a second special case to the inline function call code in eval_code2(). by Jeremy Hylton · 23 years ago
  54. 26cffde Fix the Py_FileSystemDefaultEncoding checkin - declare the variable in a fileobject.h, and initialize it in bltinmodule. by Mark Hammond · 23 years ago
  55. ef8b654 Add support for Windows using "mbcs" as the default Unicode encoding when dealing with the file system. As discussed on python-dev and in patch 410465. by Mark Hammond · 23 years ago
  56. 5ac946c SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup by Tim Peters · 23 years ago
  57. fb1f68e Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x problems. As discussed on python-dev by Mark Hammond · 23 years ago
  58. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  59. 9c90105 Several small changes. Mostly reformatting, adding parens. by Jeremy Hylton · 23 years ago
  60. 8572b4f Generalize zip() to work with iterators. by Tim Peters · 23 years ago
  61. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  62. 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  63. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  64. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  65. 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 23 years ago
  66. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  67. cab3f68 SF bug #417093: Case sensitive import: dir and .py file w/ same name by Tim Peters · 23 years ago
  68. 748b8bb Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. by Tim Peters · 23 years ago
  69. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  70. 960d948 improved error message-- names the type of the unexpected object by Jeremy Hylton · 23 years ago
  71. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  72. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  73. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  74. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  75. 37832f0 split long line by Jeremy Hylton · 23 years ago
  76. c76770c Change error message raised when free variable is not yet bound. It by Jeremy Hylton · 23 years ago
  77. d9994e0 Patch by Ping (SF bug 415879, Exception.__init__() causes segfault): by Guido van Rossum · 23 years ago
  78. 23f7aed Because this code was derived from Python 1.6.1 (amongst others), the by Guido van Rossum · 23 years ago
  79. ce260d5 Update copyright to PSF. by Guido van Rossum · 23 years ago
  80. 512a237 Fix exception handling for non-PyFunction objects, SF bug 414743. by Jeremy Hylton · 23 years ago
  81. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  82. 4471400 test_pickle works on sizeof(long)==8 boxes again. by Tim Peters · 23 years ago
  83. a830b38 Warn when assigning to __debug__ instead of raising an error. by Jeremy Hylton · 23 years ago
  84. 388ed08 SF patch #413552 - Premature decref on object by Tim Peters · 23 years ago
  85. 673a4fd Bug fix: compile() called from a nested-scopes-enable Python was not by Jeremy Hylton · 23 years ago
  86. 66e8e86 Finishing touch to Ping's changes. This is a patch that Ping sent me by Guido van Rossum · 23 years ago
  87. 6a12d8d call_sys_exitfunc(): Remove unused variable f. by Fred Drake · 23 years ago
  88. 26fabb0 Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit(). by Ka-Ping Yee · 23 years ago
  89. 897b821 Make it illegal to assign to __debug__ as per Guido's request. by Jeremy Hylton · 23 years ago
  90. 4131830 Fix memory leak with SyntaxError. (The DECREF was originally hidden by Guido van Rossum · 23 years ago
  91. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 23 years ago
  92. 2e2cded Set the line number correctly for a nested function with an exec or by Jeremy Hylton · 23 years ago
  93. 280e6bd Make error messages clearer for illegal combinations of nested by Jeremy Hylton · 23 years ago
  94. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 23 years ago
  95. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  96. 66b0e9c Use PyObject_IsInstance() to check whether the first argument to an by Guido van Rossum · 23 years ago
  97. ded4bd7 Update PyNode_CompileSymtable() to understand future statements by Jeremy Hylton · 23 years ago
  98. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  99. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 23 years ago
  100. 4df3c52 Case-checking was broken on the Macintosh. Fixed. by Jack Jansen · 23 years ago