1. ca56dd4 Issue #28139: Fix messed up indentation by Martin Panter · 9 years ago
  2. 763a61c Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
  3. bc62af1 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  4. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 10 years ago
  5. 32c49d9 use Py_CLEAR by Benjamin Peterson · 13 years ago
  6. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  7. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
  8. 595f7a5 #2016 Fix a crash in function call when the **kwargs dictionary is mutated by Amaury Forgeot d'Arc · 16 years ago
  9. 578a228 Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. by Raymond Hettinger · 16 years ago
  10. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  11. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  12. 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 · 18 years ago
  13. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 18 years ago
  14. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  15. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 18 years ago
  16. 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 19 years ago
  17. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 19 years ago
  18. 101bac2 Closure can't be NULL at this point since we know it's a tuple. by Neal Norwitz · 19 years ago
  19. ee4cc69 PyFunction_SetDefaults() is documented as taking None or a tuple. by Neal Norwitz · 19 years ago
  20. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  21. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 19 years ago
  22. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  23. d02db40 Make staticmethod and classmethod complain about keyword args. by Georg Brandl · 19 years ago
  24. e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago
  25. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  26. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 19 years ago
  27. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  28. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  29. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago
  30. ee319f6 Fix by Michael W. Hudson · 20 years ago
  31. 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 21 years ago
  32. 5e89795 This is my patch by Michael W. Hudson · 21 years ago
  33. 93468ea Remove unused macros in .c files by Neal Norwitz · 21 years ago
  34. 321c9ab Intern __name__. by Martin v. Löwis · 21 years ago
  35. be97153 SF bug #753451: classmethod abuse --> SystemError by Raymond Hettinger · 22 years ago
  36. 8657845 SF bug #692959: new.function ignores keyword arguments by Raymond Hettinger · 22 years ago
  37. 400d8ee Make staticmethods and classmethods participate in GC. by Jeremy Hylton · 22 years ago
  38. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 22 years ago
  39. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 22 years ago
  40. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 23 years ago
  41. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 23 years ago
  42. df3f793 Extend function() to support an optional closure argument. by Jeremy Hylton · 23 years ago
  43. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 23 years ago
  44. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  45. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
  46. cd874ed Fix the names of the classmethod and staticmethod constructors as passed to by Fred Drake · 23 years ago
  47. 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 23 years ago
  48. 564980b Portability fix: Not every compiler implements the extension of by Sjoerd Mullender · 24 years ago
  49. 33c1a88 SF patch #493452: docstrings for staticmethod/classmethod (Skip Montanaro) by Guido van Rossum · 24 years ago
  50. be52346 function_call(): Remove a bogus (and I mean *really* bogus) call to by Guido van Rossum · 24 years ago
  51. c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 24 years ago
  52. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 24 years ago
  53. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 24 years ago
  54. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 24 years ago
  55. d9d1d4a Rewrite function attributes to use the generic routines properly. by Guido van Rossum · 24 years ago
  56. e83c00e Use new GC API. by Neil Schemenauer · 24 years ago
  57. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 24 years ago
  58. 142865c func_getattro(), func_setattro(): Implement the new semantics for by Barry Warsaw · 24 years ago
  59. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 24 years ago
  60. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 24 years ago
  61. db81e8d Add support for weak references to the function and method types. by Fred Drake · 24 years ago
  62. a52e8fe Visit the closure during traversal and XDECREF it on during deallocation. by Jeremy Hylton · 24 years ago
  63. 3f571d6 Fix SF buf 404774 submitted by Gregory H. Ball by Jeremy Hylton · 24 years ago
  64. 497671e The one thing I love more then writing code is deleting code. by Moshe Zadka · 25 years ago
  65. 64949cb PEP 227 implementation by Jeremy Hylton · 25 years ago
  66. 0395fdd Application and elaboration of patch #103305 to fix core dumps when by Barry Warsaw · 25 years ago
  67. d6a9e84 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 25 years ago
  68. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  69. ee238b9 ANSI-fication of the sources. by Fred Drake · 25 years ago
  70. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 25 years ago
  71. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  72. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
  73. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 25 years ago
  74. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 25 years ago
  75. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 25 years ago
  76. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 25 years ago
  77. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 25 years ago
  78. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
  79. ec5b776 Marc-Andre Lemburg: by Guido van Rossum · 25 years ago
  80. 0dabace Make function objects somewhat mutable -- the members func_code, by Guido van Rossum · 27 years ago
  81. 1109fbc Make new gcc -Wall happy by Guido van Rossum · 27 years ago
  82. 83f9ad8 Fix bug in comparing function objects detected by Sjoerd: by Guido van Rossum · 28 years ago
  83. c0b618a Quickly renamed the last directory. by Guido van Rossum · 28 years ago
  84. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 29 years ago
  85. 2271bf7 changes for keyword arguments and fast function call; added abstract.c by Guido van Rossum · 30 years ago
  86. e9c6bcd fix leak in func_dealloc (forgot to decref name) by Guido van Rossum · 31 years ago
  87. 10393b1 add restrictions in restricted mode by Guido van Rossum · 31 years ago
  88. 5bd3805 Added __doc__ attribute (alias func_doc), initialized from first by Guido van Rossum · 31 years ago
  89. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 31 years ago
  90. 1d5735e Merge back to main trunk by Guido van Rossum · 31 years ago
  91. 590baa4 * import.c (get_module): pass .py filename to parse_file, not .pyc filename! by Guido van Rossum · 32 years ago
  92. 2e8f8a3 Added compare operations for functions and code objects. by Guido van Rossum · 32 years ago
  93. 2583165 Several changes in one: by Guido van Rossum · 32 years ago
  94. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 32 years ago
  95. bab9d03 Copyright for 1992 added by Guido van Rossum · 33 years ago
  96. a38c0ff Added READONLY specifier to data members. by Guido van Rossum · 34 years ago
  97. f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
  98. 3f5da24 "Compiling" version by Guido van Rossum · 35 years ago
  99. 846e431 Function objects no longer contain a parse tree node, but intermediate code. by Guido van Rossum · 35 years ago
  100. 2a9096b New errors. by Guido van Rossum · 35 years ago