1. eb1fafc New patches by Andrew to fix various problems Add cast for Lance by Guido van Rossum · 30 years ago
  2. 6cd2fe0 Correct problems found by THINK C 6.0 by Guido van Rossum · 30 years ago
  3. f0171a1 * configure.in, */Makefile*.in: OPT can now be specified in the by Guido van Rossum · 30 years ago
  4. 91ab4a8 If an attribute is deleted, __setattr__ is called with 2 instead of 3 by Guido van Rossum · 30 years ago
  5. 0b7d02a New patches by Andrew to fix various problems by Guido van Rossum · 30 years ago
  6. e149fa2 * Objects/classobject.c, Include/classobject.h: added __getattr__ by Guido van Rossum · 30 years ago
  7. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  8. 2e1d433 Added getmaxint() so sys can initialize sys.maxint. Added Makefile.in. by Guido van Rossum · 31 years ago
  9. 7d6aa51 * rangeobject.[ch], bltinmodule.c: incorporate new version of range by Guido van Rossum · 31 years ago
  10. 455b87d New file by Guido van Rossum · 31 years ago
  11. 590baa4 * import.c (get_module): pass .py filename to parse_file, not .pyc filename! by Guido van Rossum · 31 years ago
  12. 8732d6a Fix lay-out of previous fix. by Guido van Rossum · 31 years ago
  13. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  14. c45611d * import.c (get_module): total rewrite, to ensure proper search order: for by Guido van Rossum · 31 years ago
  15. 71e57d0 Fix the fix :-( by Guido van Rossum · 31 years ago
  16. 6938a29 Three micro fixes to formatstring by Guido van Rossum · 31 years ago
  17. 52f2c05 * parsermodule.c, Makefile, config.c: rudimentary interface to the Python by Guido van Rossum · 31 years ago
  18. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  19. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  20. 2e8f8a3 Added compare operations for functions and code objects. by Guido van Rossum · 31 years ago
  21. 4199fac Added getmappingsize(). (Needed by previous checkin of posixmodule.c) by Guido van Rossum · 31 years ago
  22. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  23. 82d410e * fileobject.c (softspace): fix bug if called with NULL file. by Guido van Rossum · 31 years ago
  24. 2586bf0 * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range by Guido van Rossum · 31 years ago
  25. 615194a Fixed bugs in resizetuple and extended the interface. by Sjoerd Mullender · 31 years ago
  26. dc4b93d * listobject.c (list_ass_slice): XDECREF instead of DECREF so by Guido van Rossum · 31 years ago
  27. 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago
  28. 444fc7c Add some necessary casts; use double quotes to represent strings in some cases. by Guido van Rossum · 31 years ago
  29. 72481a3 Changes to make range checks portable to 64-bit machines. by Guido van Rossum · 31 years ago
  30. 5a2a683 * filemodule.c: added writelines() -- analogous to readlines() by Guido van Rossum · 31 years ago
  31. 52c1f51 import.c: When something is wrong with the .pyc, properly open the .py by Sjoerd Mullender · 31 years ago
  32. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  33. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  34. 842d2cc intobject.c: Save references to small integers, so that they can be by Sjoerd Mullender · 31 years ago
  35. 21d335e Makefile, import.c: Lance's alternative module search (allow .pyc file by Guido van Rossum · 31 years ago
  36. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  37. f64992e * clmodule.c (doParams): free PVbuffer in error condition. by Sjoerd Mullender · 31 years ago
  38. 1fc238a Minor fixes / changes for Mac compatibility. by Guido van Rossum · 31 years ago
  39. ed18fdc * accessobject.c (ownercheck): allow a base class access to protected by Guido van Rossum · 31 years ago
  40. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  41. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  42. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  43. b3f7258 * Lots of small changes related to access. by Guido van Rossum · 31 years ago
  44. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  45. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  46. 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 31 years ago
  47. 8a0c345 Fix bug in class instance hash (forgot to clear error condition). by Guido van Rossum · 31 years ago
  48. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  49. 5b72218 * Fixed some subtleties with fastlocals. You can no longer access by Guido van Rossum · 31 years ago
  50. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  51. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  52. 4b1302b Generalized version of dictionaries, with compatibility hacks. by Guido van Rossum · 31 years ago
  53. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  54. 9e51f9b bltinmodule.c: added round(x, [n]); coerce() of two class instances by Guido van Rossum · 31 years ago
  55. bf80e54 * stdwinmodule.c: various new commands: setwin{pos,size}, by Guido van Rossum · 31 years ago
  56. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  57. 0b0db8e Added separate main program for the Mac: macmain.c by Guido van Rossum · 31 years ago
  58. e35399e Checking in last-minute changes that are already part of release 0.9.8 by Guido van Rossum · 32 years ago
  59. a2b7f40 * Configure.py: use #!/usr/local/bin/python by Guido van Rossum · 32 years ago
  60. de788b8 fileobject.c: fix nasty bug; Makefile; turn on STROP and change lint flags. by Guido van Rossum · 32 years ago
  61. d014ea6 * classobject.c: in instance_lenth, test result of call_object by Guido van Rossum · 32 years ago
  62. a9e7dc1 * bltinmodule.c: added built-in function cmp(a, b) by Guido van Rossum · 32 years ago
  63. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  64. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  65. 1899c2e Made builtins int(), long(), float(), oct() and hex() more generic. by Guido van Rossum · 32 years ago
  66. 94472a0 classobject.c moduleobject.c stdwinmodule.c xxobject.c: by Guido van Rossum · 32 years ago
  67. ba3690c Remove outdated warning in comments. by Guido van Rossum · 32 years ago
  68. 67daef5 Remove bogus type-and-refcnt setting from newsizedstringobject(). by Guido van Rossum · 32 years ago
  69. ebc8c51 Compare instance methods by comparing the object and the function. by Guido van Rossum · 32 years ago
  70. 2e8f614 If a type has a repr function but no print function, printing it now by Guido van Rossum · 32 years ago
  71. 1e28e5e * renamed malloc.h mymalloc.h, and added MALLARG as the type of the by Guido van Rossum · 32 years ago
  72. 2c47542 oct(0) should return '0', not '00' by Guido van Rossum · 32 years ago
  73. 6d946f9 * macmodule.c: include allobjects.h, not .c by Guido van Rossum · 32 years ago
  74. e6eefc2 * classobject.[ch], {float,long,int}object.c, bltinmodule.c: by Guido van Rossum · 32 years ago
  75. 70d7a31 * xxobject.c: added tp_as_number, tp_as_sequence, tp_as_mapping to by Guido van Rossum · 32 years ago
  76. 04691fc Changes so that user-defined classes can implement operations invoked by Guido van Rossum · 32 years ago
  77. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  78. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago
  79. e10a19e listobject.c: added optional cmp function to list.sort(). by Guido van Rossum · 32 years ago
  80. c10aa77 fileobject.c: fix fatal bug in getline() (forgot to initialize fp now) by Guido van Rossum · 32 years ago
  81. d7297e6 Makefile: added instann rules and $(*DEST*) defines. by Guido van Rossum · 32 years ago
  82. ed233a5 Changes for new UNIX-specific built-in module 'select' and new header for by Guido van Rossum · 32 years ago
  83. 5dc8eb0 sysmodule.c: calling sys.settrace() or sys.setprofile() without by Guido van Rossum · 32 years ago
  84. 5763965 New copyright by Guido van Rossum · 32 years ago
  85. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  86. 8dd79cf Don't allow assignment to attributes named __*__ by Guido van Rossum · 32 years ago
  87. 719f5fa lint fix by Guido van Rossum · 32 years ago
  88. 3132a5a answer lint's complaints by Guido van Rossum · 32 years ago
  89. 8b27d92 Lint stuff (involves casts, yuck!) by Guido van Rossum · 32 years ago
  90. eec181a Lint ./ by Guido van Rossum · 32 years ago
  91. 2a59166 Lint by Guido van Rossum · 32 years ago
  92. 0c182a1 Fix lint bug by Guido van Rossum · 32 years ago
  93. 96163c1 Lint... by Guido van Rossum · 32 years ago
  94. 85998fa Silence lint by Guido van Rossum · 32 years ago
  95. 51415a7 Quiet lint by Guido van Rossum · 32 years ago
  96. febd551 Change error handling. Call clearerr() more often. by Guido van Rossum · 32 years ago
  97. fa3da8a Include modsupport.h for getargs(). by Guido van Rossum · 32 years ago
  98. 56cd67a Get rid of redundant type checks. Define % operator similar to int%int. by Guido van Rossum · 32 years ago
  99. e32e014 Add prototypes. Change / and % to match divmod. by Guido van Rossum · 33 years ago
  100. 2b16a6f Make / and % do the same as divmod. by Guido van Rossum · 33 years ago