1. ce4b170 #4236: avoid possible Fatal Error when import is called from __del__ by R. David Murray · 14 years ago
  2. 532d091 Reverted accidental commit (from r87159) by Alexander Belopolsky · 14 years ago
  3. fc55789 Updated UCD version and unicode.org links to Unicode 6.0.0 by Alexander Belopolsky · 14 years ago
  4. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  5. 5c4bfc4 prefer clearing global objects to obscure module.__dict__ bugs #10068 by Benjamin Peterson · 14 years ago
  6. 6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function by Victor Stinner · 14 years ago
  7. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  8. f3f22a2 Issue #6697: Fix a crash if a module attribute name contains a surrogate by Victor Stinner · 14 years ago
  9. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  10. 8124feb module_repr(): use %U to format the file name by Victor Stinner · 14 years ago
  11. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  12. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  13. e4bc7f6 Issue #4838: When a module is deallocated, free the memory backing the optional module state data. by Antoine Pitrou · 16 years ago
  14. 574b127 Remove traces of Py_InitModule*. by Georg Brandl · 16 years ago
  15. 4e0630c Issue #3740: Null-initialize module state. Reviewed by Benjamin Peterson. by Martin v. Löwis · 16 years ago
  16. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  17. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  18. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  19. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  20. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  21. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  22. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  23. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  24. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  25. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  26. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  27. 0f0eb0b Kill two innocuous compiler warnings. by Guido van Rossum · 17 years ago
  28. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  29. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  30. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  31. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  32. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  33. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  34. 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 20 years ago
  35. 7555294 Remove code that tried to warn about shadowing builtin names after a by Neil Schemenauer · 21 years ago
  36. 4e3363e Warn about creating global variables by __setattr__ that shadow builtin by Neil Schemenauer · 21 years ago
  37. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  38. ed3e09f Add a docstring to the module type. by Guido van Rossum · 22 years ago
  39. c3a787e Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 22 years ago
  40. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  41. cd637aa Fix for SF bug #529050 - ModuleType.__new__ crash. by Guido van Rossum · 22 years ago
  42. f23473f Add missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  43. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  44. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  45. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  46. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  47. 2907fe6 module_repr(): Instead of fixing the maximum buf size to 400, by Barry Warsaw · 23 years ago
  48. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  49. 16cabc0 Repair "module has no attribute xxx" error msg; bug introduced when by Tim Peters · 23 years ago
  50. d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 23 years ago
  51. 10e31cf Add garbage collection for module objects. Closes patch #102939 and by Neil Schemenauer · 24 years ago
  52. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  53. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  54. ee238b9 ANSI-fication of the sources. by Fred Drake · 24 years ago
  55. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  56. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  57. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  58. 98cc19f Patch by Chris Petrilli to display the origin of a module in its by Guido van Rossum · 25 years ago
  59. 2f3667a Replace fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  60. f1dc061 Add internal routine _PyModule_Clear(), which does approximately what by Guido van Rossum · 26 years ago
  61. 0add15f removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. by Guido van Rossum · 27 years ago
  62. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  63. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  64. 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
  65. 27e916f apply dictclear to dict of deleted modules by Guido van Rossum · 29 years ago
  66. 8b14b4c initialize __doc__ to None by Guido van Rossum · 30 years ago
  67. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  68. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  69. c45611d * import.c (get_module): total rewrite, to ensure proper search order: for by Guido van Rossum · 31 years ago
  70. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  71. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  72. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  73. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  74. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  75. 94472a0 classobject.c moduleobject.c stdwinmodule.c xxobject.c: by Guido van Rossum · 32 years ago
  76. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  77. 2a59166 Lint by Guido van Rossum · 32 years ago
  78. 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
  79. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  80. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  81. 73531a3 Return -1 for errors. by Guido van Rossum · 34 years ago
  82. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  83. 0558a20 Added getmodulename() public interface. by Guido van Rossum · 34 years ago
  84. e87203a Added __dict to module getattr. New errors. by Guido van Rossum · 34 years ago
  85. 2b654f7 New error handling in getattr(). by Guido van Rossum · 34 years ago
  86. 85a5fbb Initial revision by Guido van Rossum · 34 years ago