1. 950ff29 Experimental feature: add default argument to getattr(). by Guido van Rossum · 26 years ago
  2. f9d9c6c Added doc strings. by Guido van Rossum · 26 years ago
  3. d9b5208 In raw_input(prompt), make sure that str(prompt) really a string by Guido van Rossum · 26 years ago
  4. 9396673 Remove a few unused locals (I love VC++ for this!). by Guido van Rossum · 26 years ago
  5. 09df08a A bunch of functions are now properly implemented in abstract.c, and by Guido van Rossum · 26 years ago
  6. 1e162d3 Implement round() slightly different, so that for negative ndigits no by Guido van Rossum · 26 years ago
  7. a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 26 years ago
  8. 507338e In-line the code in range() to set the list items; there's really no by Guido van Rossum · 26 years ago
  9. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  10. 8f74571 Use a faster way to check for null bytes in the string argument for by Guido van Rossum · 26 years ago
  11. d6af46d Need a cast when comparing type object in isinstance() by Guido van Rossum · 27 years ago
  12. f5dd914 Support type objects in isinstance(). by Guido van Rossum · 27 years ago
  13. ee81af8 Release interpreter lock around readline call in [raw_]input(). by Guido van Rossum · 27 years ago
  14. b01a7fa initerrors(): Eliminate circular reference which was causing a small by Barry Warsaw · 27 years ago
  15. 412cdc2 [Py_Exc]NumberError => [Py_Exc]ArithmeticError by Barry Warsaw · 27 years ago
  16. 0474832 Introduce PyExc_Exception as the conceptual root class for all exceptions. by Guido van Rossum · 27 years ago
  17. aee0bad First part of package support. by Guido van Rossum · 27 years ago
  18. 757af0e Removed obsolete exception PyExc_AccessError. by Barry Warsaw · 27 years ago
  19. cde8b1b Two new built-in functions: issubclass() and isinstance(). Both take by Barry Warsaw · 27 years ago
  20. 25ce566 The last of the mass checkins for separate (sub)interpreters. by Guido van Rossum · 27 years ago
  21. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  22. b6a7f77 Oops -- missed FloatingPointError in renaming. by Guido van Rossum · 27 years ago
  23. b05a5c7 Instead of importing graminit.h whenever one of the three grammar 'root' by Guido van Rossum · 27 years ago
  24. 666b17a New dir() function -- by Guido van Rossum · 27 years ago
  25. 15e33a4 Avoid sprintf buffer overflow if more than 9999 arguments. by Guido van Rossum · 27 years ago
  26. 79f25d9 Quickly renamed the remaining files -- this directory is done. by Guido van Rossum · 27 years ago
  27. 6bf62da Keep gcc -Wall and Microsoft VC happy. by Guido van Rossum · 27 years ago
  28. c6472e9 1. Add string conversions to int(), long(), float(). (Not to complex()!) by Guido van Rossum · 27 years ago
  29. 1c6a459 Define __debug__ as 0 if -O is given, 1 otherwise. Also test for by Guido van Rossum · 27 years ago
  30. 0ae748d Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  31. e8811f8 Added intern() function. by Guido van Rossum · 27 years ago
  32. 8d75161 Intern the string "__complex__". by Guido van Rossum · 27 years ago
  33. 1a2c5cb Add unistd.h to make gcc -Wall happy. by Guido van Rossum · 28 years ago
  34. ed0af8f Support __complex__ method on instances, for complex() conversion. by Guido van Rossum · 28 years ago
  35. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  36. b75fba0 Forget about Ellipses b/w compatibility. by Guido van Rossum · 28 years ago
  37. e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
  38. b072150 Stupid bug: complex(x,y) would yield x+xj by Guido van Rossum · 28 years ago
  39. 79d96d6 Don't die in resizestring() on filter(<func>, ""). by Guido van Rossum · 28 years ago
  40. fe4b6ee Include mymath.h instead of declaring prototypes for math functions. by Guido van Rossum · 28 years ago
  41. 6ffd553 Add 'Ellipses' object. by Guido van Rossum · 28 years ago
  42. 8861b74 Changes for slice and ellipses by Guido van Rossum · 28 years ago
  43. 530956d Py_complex; and WITHOUT_COMPLEX added to getargs.c by Guido van Rossum · 28 years ago
  44. 795ba58 Removed some redundant header includes. by Guido van Rossum · 28 years ago
  45. d170577 Add list() method, analogous to tuple(). by Guido van Rossum · 28 years ago
  46. c96ef6a properly initialize optional arguments to apply() by Guido van Rossum · 28 years ago
  47. 8a5c5d2 changes for complex numbers by Guido van Rossum · 28 years ago
  48. b7b4562 avoid resize of 0-length tuple by Guido van Rossum · 29 years ago
  49. 53bb7ff be more suspicious of getlocals() by Guido van Rossum · 29 years ago
  50. 681d79a keyword arguments and faster calls by Guido van Rossum · 29 years ago
  51. 3212031 rename arglist to alist (conflict with new grammar symbol) by Guido van Rossum · 29 years ago
  52. 872537c added locals() and globals(); [raw_]input() uses readline() by Guido van Rossum · 29 years ago
  53. 8a1e8eb fix bogus test for negative float by Guido van Rossum · 29 years ago
  54. 24c1374 call __import__() with 4 args instead of 1 by Guido van Rossum · 29 years ago
  55. 2165158 test for float to the float power here by Guido van Rossum · 29 years ago
  56. a6f6050 moved callable() to object.c by Guido van Rossum · 29 years ago
  57. 7f9fa97 fix import related leaks by Guido van Rossum · 29 years ago
  58. 0865dd9 fix Alpha bug in (x)range; different __builtins__ initialization by Guido van Rossum · 29 years ago
  59. 58b6873 fix subtle refcount big in filter() -- Tim MacKenzie by Guido van Rossum · 29 years ago
  60. 5524a59 move coerce() from bltinmodule.c to object.c and implement builtin_coerce() differently by Guido van Rossum · 29 years ago
  61. 84eaa83 fix globals/locals defaults for eval/execfile by Guido van Rossum · 29 years ago
  62. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 30 years ago
  63. 6a00cd8 * Python/bltinmodule.c: restructured coerce(), divmod(), pow() to by Guido van Rossum · 30 years ago
  64. 6d023c9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  65. 1ae940a Lots of changes, most minor (fatal() instead of abort(), use of by Guido van Rossum · 30 years ago
  66. 030ae17 fix pow() core dump by Guido van Rossum · 30 years ago
  67. 180d7b4 * Python/ceval.c, Include/ceval.h: promote MakePendingCalls to by Guido van Rossum · 30 years ago
  68. e4ab647 * Python/getmtime.c: Remove mac specifics (Mac subdirectory has by Guido van Rossum · 30 years ago
  69. 14144fc Added delattr() by Guido van Rossum · 30 years ago
  70. cae027b * Python/bltinmodule.c: added tuple() builtin by Guido van Rossum · 30 years ago
  71. df05ac6 Python/bltinmodule.c: mods by Andrew Kuchling to implement by Guido van Rossum · 30 years ago
  72. 2d95185 * Python/bltinmodule.c (builtin_vars): correct typo in error msg by Guido van Rossum · 30 years ago
  73. 7d6aa51 * rangeobject.[ch], bltinmodule.c: incorporate new version of range by Guido van Rossum · 31 years ago
  74. 590baa4 * import.c (get_module): pass .py filename to parse_file, not .pyc filename! by Guido van Rossum · 31 years ago
  75. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  76. e77a757 * nismodule.c: database keys and values can contain null bytes. be more by Guido van Rossum · 31 years ago
  77. 2586bf0 * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range by Guido van Rossum · 31 years ago
  78. 615194a Fixed bugs in resizetuple and extended the interface. by Sjoerd Mullender · 31 years ago
  79. dc4b93d * listobject.c (list_ass_slice): XDECREF instead of DECREF so by Guido van Rossum · 31 years ago
  80. 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago
  81. 89b3325 * import.c (MAGIC): Changed magic word to avoid confusion about exec by Guido van Rossum · 31 years ago
  82. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  83. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  84. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  85. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  86. 5b72218 * Fixed some subtleties with fastlocals. You can no longer access by Guido van Rossum · 31 years ago
  87. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  88. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  89. 9e51f9b bltinmodule.c: added round(x, [n]); coerce() of two class instances by Guido van Rossum · 31 years ago
  90. d014ea6 * classobject.c: in instance_lenth, test result of call_object by Guido van Rossum · 32 years ago
  91. c89705d * config.c: Added audioop to lists. by Guido van Rossum · 32 years ago
  92. a9e7dc1 * bltinmodule.c: added built-in function cmp(a, b) by Guido van Rossum · 32 years ago
  93. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  94. 1899c2e Made builtins int(), long(), float(), oct() and hex() more generic. by Guido van Rossum · 32 years ago
  95. 2b81dc9 fix *serious* (new) bug in evalfile: forgot to initialize s!!! by Guido van Rossum · 32 years ago
  96. 94390a4 use getargs() in more cases; oct(0) should return '0', not '00' by Guido van Rossum · 32 years ago
  97. e6eefc2 * classobject.[ch], {float,long,int}object.c, bltinmodule.c: by Guido van Rossum · 32 years ago
  98. 04691fc Changes so that user-defined classes can implement operations invoked by Guido van Rossum · 32 years ago
  99. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  100. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago