1. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  2. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  3. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  4. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  5. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  6. 07e5681 #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack Diederich. by Georg Brandl · 16 years ago
  7. 6a644f9 Add py3k warnings for code and method inequality comparisons. This should resolve issue 2373. The codeobject.c and methodobject.c changes are both just backports of the Python 3 code. by Steven Bethard · 16 years ago
  8. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  9. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  10. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 17 years ago
  11. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 17 years ago
  12. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  13. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  14. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
  15. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  16. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  17. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  18. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 22 years ago
  19. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 22 years ago
  20. 4f0dcc9 Provide __module__ attributes for functions defined in C and Python. by Jeremy Hylton · 22 years ago
  21. 541ceec PyCFunction_Call(): Combined two switch cases w/ identical bodies. by Tim Peters · 22 years ago
  22. bf43f8a SF Patch #661440: Refactor and streamline PyCFunction_Call by Raymond Hettinger · 22 years ago
  23. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  24. d91eec9 Re-enable GC of method objects. by Neil Schemenauer · 22 years ago
  25. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  26. 38b88c2 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  27. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  28. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  29. 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
  30. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  31. 10c6692 GC for method objects. by Neil Schemenauer · 23 years ago
  32. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  33. ee238b9 ANSI-fication of the sources. by Fred Drake · 24 years ago
  34. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  35. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  36. 9a15c21 Fix an error on AIX by using a proper cast. by Guido van Rossum · 24 years ago
  37. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  38. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  39. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  40. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  41. 13fdf5e When comparing bound methods, use identity test on the objects, by Guido van Rossum · 26 years ago
  42. 9223351 Marc-Andre Lemburg's patch to move the typedef for PyCFunctionObject by Guido van Rossum · 26 years ago
  43. 8a92c62 New feature: if the object's type has a non-NULL tp_doc field, that by Guido van Rossum · 26 years ago
  44. 1f39c5c Added separate free list for cfunction (builtin method) objects, for a by Guido van Rossum · 27 years ago
  45. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  46. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  47. a83f270 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
  48. 6978503 added findmethodinchain and methodchain data types by Guido van Rossum · 30 years ago
  49. 10393b1 add restrictions in restricted mode by Guido van Rossum · 30 years ago
  50. cab650d * Objects/methodobject.c: changed drastically, the object now by Guido van Rossum · 30 years ago
  51. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  52. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  53. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  54. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  55. b3f7258 * Lots of small changes related to access. by Guido van Rossum · 31 years ago
  56. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  57. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  58. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  59. eec181a Lint ./ by Guido van Rossum · 32 years ago
  60. c060229 Add "varargs" attribute. by Guido van Rossum · 33 years ago
  61. bd3a2e6 Use AttributeError. by Guido van Rossum · 33 years ago
  62. e9c430f Implemented __methods__ attribute by Guido van Rossum · 33 years ago
  63. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  64. f70e43a Added copyright notice. by Guido van Rossum · 34 years ago
  65. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  66. 2a9096b New errors. by Guido van Rossum · 34 years ago
  67. 85a5fbb Initial revision by Guido van Rossum · 34 years ago