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