1. 42827e9 Fix a wrong struct field assignment (docstring as closure). by Georg Brandl · 16 years ago
  2. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  3. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  4. 5ffad66 Make generator repr consistent with function and code object repr. by Georg Brandl · 16 years ago
  5. c91210c #2863: add gen.__name__ and add this name to generator repr(). by Georg Brandl · 16 years ago
  6. 0cdf9a3 #1473257: add generator.gi_code attribute that refers to by Georg Brandl · 17 years ago
  7. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  8. 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 17 years ago
  9. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  10. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  11. 81b092d gen_del(): Looks like much this was copy/pasted from by Tim Peters · 19 years ago
  12. 447d095 - Whitespace normalization by Thomas Wouters · 19 years ago
  13. 8ebb28d Fix SF#1470508: crash in generator cycle finalization. There were two by Phillip J. Eby · 19 years ago
  14. 3109d62 Add a cast to make code compile with a C++ compiler. by Anthony Baxter · 19 years ago
  15. 8920bf2 Don't set gi_frame to Py_None, use NULL instead, eliminating some insane by Phillip J. Eby · 19 years ago
  16. 017749c wrap docstrings so they are less than 80 columns. add spaces after commas. by Neal Norwitz · 19 years ago
  17. a5a80cb gen_throw(): The caller doesn't own PyArg_ParseTuple() by Tim Peters · 19 years ago
  18. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 19 years ago
  19. bee0712 Support throw() of string exceptions. by Phillip J. Eby · 19 years ago
  20. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  21. bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
  22. 967aa8b * Refcount leak. It was just a reference to Py_None, but still. by Armin Rigo · 19 years ago
  23. 0014822 Fix a too-aggressive assert (see SF#1257960). Previously, gen_iternext by Phillip J. Eby · 19 years ago
  24. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  25. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  26. 8d97e33 Patch #966493: Cleanup generator/eval_frame exposure. by Martin v. Löwis · 20 years ago
  27. 6c7a00f * Factor out PyObject_SelfIter(). by Raymond Hettinger · 20 years ago
  28. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago