1. 0360663 PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 24 years ago
  2. 9b18adc Ignore Grammar/Makefile now that it's a made Makefile. by Thomas Wouters · 24 years ago
  3. e82e7cc Remove the winreg module from the project. I don't believe any by Tim Peters · 24 years ago
  4. a98e92b Add alias for old function name -- removing it broke Alexei Gilchrist's cfm by Andrew M. Kuchling · 24 years ago
  5. 120beb6 Strengthen the warning against using SerialCookie and SmartCookie. by Andrew M. Kuchling · 24 years ago
  6. 6aa92c5 - identify() enum names. by Jack Jansen · 24 years ago
  7. c15ab03 Updated the applescript documentation for te new framework, and replaced the Eudora example with one that uses Disk Copy (which everyone running MacOS 8 or by Jack Jansen · 24 years ago
  8. e743c6e Added a package for the other browser too. by Jack Jansen · 24 years ago
  9. 9ebf2d2 Moved to unsupported: it never lived up to its expectancies, and for the Mac all the functionality is available in the IDE. by Jack Jansen · 24 years ago
  10. 51f3570 Moved to unsupported: it doesn't work anymore and it has outlived its usefulness so I don't want to fix it. by Jack Jansen · 24 years ago
  11. 742ca03 Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk in the source folder). by Jack Jansen · 24 years ago
  12. 18b47a0 Fixed again to work with the old scripting interface (so we can test the new one actually still works). by Jack Jansen · 24 years ago
  13. 8bcd471 Updated for the new applescript interface (which actually makes it so ridiculously simple that its main reason for existence is backward compatability). by Jack Jansen · 24 years ago
  14. 2eda244 Enums we cannot find are set to None, and enumsubst understands this (no substitution done). This is need for what I think are bugs in the Finder aete resources (some events use unknown enums). by Jack Jansen · 24 years ago
  15. 12b2b76 Fixed event inheritance code (which didn't work at all). by Jack Jansen · 24 years ago
  16. f58bbbe Finder suite. by Jack Jansen · 24 years ago
  17. 4ef58af Regenerated with fixes to gensuitemodule. by Jack Jansen · 24 years ago
  18. 0400515 Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn't by Thomas Wouters · 24 years ago
  19. 84f28db Changed the popen2.py _test function to use the "more" cmd when by Tim Peters · 24 years ago
  20. 571bb8f David Goodger's new getopt test module (thanks, David!). by Tim Peters · 24 years ago
  21. 8bad612 Disallow "import mod.submod as m", because the result is ambiguous. Does it by Thomas Wouters · 24 years ago
  22. 15446d3 Add entry for Cookie module. by Fred Drake · 24 years ago
  23. e5c7352 Make it format. by Fred Drake · 24 years ago
  24. 514a102 Adding tests of the "attrs" optional argument, and of the js_output by Moshe Zadka · 24 years ago
  25. f580d27 Use METH_VARARGS constant in example module. Fix comment typo by Andrew M. Kuchling · 24 years ago
  26. cdec8c7 Test case for Cookie.py by Andrew M. Kuchling · 24 years ago
  27. 1b07f2b Initial revision. Markup unchecked. by Moshe Zadka · 24 years ago
  28. 52ea872 Added Tim O'Malley's Cookie.py module (master version at by Andrew M. Kuchling · 24 years ago
  29. 73f77b4 com_error(): Quiet gcc -Wall warning. by Barry Warsaw · 24 years ago
  30. 04e654a Remove a couple of warnings turned up by "gcc -Wall". by Fred Drake · 24 years ago
  31. ce4dc41 PyUnicode_AsUTF8String(): /F picks up what I missed: the local var by Barry Warsaw · 24 years ago
  32. 0888ff1 Do not set a MemoryError exception over another MemoryError exception, by Vladimir Marangozov · 24 years ago
  33. 8ae9ce5 Better conformance to the Python Style Guide: use spaces around operators. by Fred Drake · 24 years ago
  34. fe5c22a When a KeyboardInterrupt is caught, just use the "raise" syntax to by Fred Drake · 24 years ago
  35. 7b4fc17 Revise to use atexit instead of monkeying with sys.exitfunc directly. by Fred Drake · 24 years ago
  36. def0038 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
  37. b65b006 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
  38. f28b898 Removed references to Py_FPROTO. by Sjoerd Mullender · 24 years ago
  39. 2dd4abf PyUnicode_AsUTF8String(): Don't need to explicitly incref str since by Barry Warsaw · 24 years ago
  40. f087960 ANSI-fy function headers. Not much more can be done since I don't by Barry Warsaw · 24 years ago
  41. 4ddd820 lad_dealloc(): if xp->x_fd == -1, it means the descriptor's already by Barry Warsaw · 24 years ago
  42. 152fbe8 pattern_findall(): Plug small memory leak discovered by Insure. by Barry Warsaw · 24 years ago
  43. fc4514c init_locale(): This file defines the _locale module, so the by Barry Warsaw · 24 years ago
  44. 87bec35 SyntaxError__classinit__(): Slight reorg for simplicity. by Barry Warsaw · 24 years ago
  45. 38aa14a PyParser_ParseString(): When the err_ret structure is initialized, the by Barry Warsaw · 24 years ago
  46. 5ca1ef9 comples_from_string(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  47. 9d23a4e make_pair(): When comparing the pointers, they must be cast to integer by Barry Warsaw · 24 years ago
  48. 67c1a04 PyFloat_FromString(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  49. dc55d71 PyInstance_DoBinOp(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
  50. bc7c7f9 Added test for uintptr_t, the C9X acceptable way to spell "type to by Barry Warsaw · 24 years ago
  51. e736177 Added #undef HAVE_UINTPTR_T for autoconf's delight. by Barry Warsaw · 24 years ago
  52. 5eae2c1 Moved LONG_LONG #define from here to pyport.h. by Barry Warsaw · 24 years ago
  53. fd847b2 Moved LONG_LONG #define from longobject.h to here, since it's needed by Barry Warsaw · 24 years ago
  54. 512bb72 As pointed out by Denis S. Otkidach <den@analyt.chem.msu.ru>, xrange() by Fred Drake · 24 years ago
  55. a007382 Adjust the way __getslice__() is marked as deprecated; this will also by Fred Drake · 24 years ago
  56. 304faf9 Fix a markup error that caused formatting to fail. by Fred Drake · 24 years ago
  57. 59ecafa Mention the new 'import X as Y' syntax by Andrew M. Kuchling · 24 years ago
  58. 0690c86 Document the returns_unicode attribute by Andrew M. Kuchling · 24 years ago
  59. 4148877 Update to reflect the recent Grammar changes. by Fred Drake · 24 years ago
  60. 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
  61. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  62. 68add2e Remove an item that's been done. by Fred Drake · 24 years ago
  63. dd611b0 A little more text, and some really minor cleanups. by Fred Drake · 24 years ago
  64. e581bb3 Small cleanups, and note when zip() entered the menagerie. by Fred Drake · 24 years ago
  65. b32aa5e Revise the comments about the exceptions module to not refer to source by Fred Drake · 24 years ago
  66. 25699f9 Martin v. Loewis <martin@loewis.home.cs.tu-berlin.de>: by Fred Drake · 24 years ago
  67. 5119a0b Package with suites for talking to CodeWarrior. by Jack Jansen · 24 years ago
  68. 47ff247 Package with suites for talking to netscape. by Jack Jansen · 24 years ago
  69. ff792c2 The package with standard suites. These are used separately and as base classes for other suite packages (StdSuite is slightly magical, in that it is the gensuitemodule default base package). by Jack Jansen · 24 years ago
  70. 87426b9 Use the new package-based scripting support. by Jack Jansen · 24 years ago
  71. 60762cb Generate packages in stead of separate modules. The package main module imports everything, it knows about the app signature, suites can extend standard suites, and lots more. Automatically finding declarations in other suites TBD. by Jack Jansen · 24 years ago
  72. fb106c8 Removed temporary code to disable OT networking (this was a workaround for getpeername() not working in a previous release of GUSI, but it has been fixed). by Jack Jansen · 24 years ago
  73. d843a01 Removed temporary code that always set creator to SimpleText. by Jack Jansen · 24 years ago
  74. a179503 Reran autoconf. by Sjoerd Mullender · 24 years ago
  75. 59bb080 Fix up problems when compiling in a directory other than the source directory. by Sjoerd Mullender · 24 years ago
  76. 227b120 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
  77. 9b8d801 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
  78. de9fec5 \citetitle: Format the title, not the optional URL! by Fred Drake · 24 years ago
  79. 2d2dc9f Add section on list comprehension by Andrew M. Kuchling · 24 years ago
  80. 4df762f Insure properly identifies the `interned' dictionary as leaking at by Barry Warsaw · 24 years ago
  81. f2581c9 _PySys_Init(): Fix another Insure discovered memory leak; the PyString by Barry Warsaw · 24 years ago
  82. 239548f The sre test suite currently overruns the stack on Win64, Linux64, and Monterey by Trent Mick · 24 years ago
  83. 1aebadf Ka-Ping Yee <ping@lfw.org>: Further examples of list comprehensions. by Fred Drake · 24 years ago
  84. 2d2785a updated occurences of fqdn algorithm (closes patch #101197) by Peter Schneider-Kamp · 24 years ago
  85. 77c9f50 SyntaxError__str__(): Fix two memory problems discovered by Insure. by Barry Warsaw · 24 years ago
  86. 9f6e6c6 add dummy 'add2lib' target to Grammar/Makefile so non-GNU makes don't bail out by Trent Mick · 24 years ago
  87. 0ebc1c6 Use socket.getfqdn() instead of defining make_fqdn(). by Fred Drake · 24 years ago
  88. 5772c86 Document socket.getfqdn(). by Fred Drake · 24 years ago
  89. b526e5f The socket module is now _socket on all platforms. by Fred Drake · 24 years ago
  90. a136d49 Remove a lot of the confusing conditional compilation from the beginning by Fred Drake · 24 years ago
  91. a6070f0 Revise the wrapper structure for the socket module: by Fred Drake · 24 years ago
  92. 1582a3a Updated comment by Andrew M. Kuchling · 24 years ago
  93. 080bb2a Deleted now-unused include files by Andrew M. Kuchling · 24 years ago
  94. 2337f55 Mention setdefault() method for dicts by Andrew M. Kuchling · 24 years ago
  95. c756bdb From Rene Liebscher: by Mark Hammond · 24 years ago
  96. caa658d Apply SF patch #101151, by Peter S-K, which fixes smtplib's passing of the by Thomas Wouters · 24 years ago
  97. 56221a7 Chris Herborth <chrish@pobox.com>: Minor updates for BeOS R5. by Fred Drake · 24 years ago
  98. d341579 Fix error made in applying Thomas's patch. by Fred Drake · 24 years ago
  99. a1e214a Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  100. d066f6d Fix markup bug that prevented formatting. by Fred Drake · 24 years ago