summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Moved to unsupported: it never lived up to its expectancies, and for the Mac ...Jack Jansen2000-08-2010-0/+0
* Moved to unsupported: it doesn't work anymore and it has outlived its usefuln...Jack Jansen2000-08-201-0/+0
* Updated for new AppleScript structure and moved to Lib (it's far too useful t...Jack Jansen2000-08-201-8/+2
* Fixed again to work with the old scripting interface (so we can test the new ...Jack Jansen2000-08-201-1/+1
* Updated for the new applescript interface (which actually makes it so ridicul...Jack Jansen2000-08-201-23/+6
* Enums we cannot find are set to None, and enumsubst understands this (no subs...Jack Jansen2000-08-202-6/+10
* Fixed event inheritance code (which didn't work at all).Jack Jansen2000-08-201-117/+239
* Finder suite.Jack Jansen2000-08-2012-0/+3801
* Regenerated with fixes to gensuitemodule.Jack Jansen2000-08-206-44/+44
* Fix the bug Sjoerd Mullender discovered, where find_from_args() wasn'tThomas Wouters2000-08-201-1/+3
* Changed the popen2.py _test function to use the "more" cmd whenTim Peters2000-08-201-5/+10
* David Goodger's new getopt test module (thanks, David!).Tim Peters2000-08-202-0/+108
* Disallow "import mod.submod as m", because the result is ambiguous. Does itThomas Wouters2000-08-192-2/+8
* Add entry for Cookie module.Fred Drake2000-08-192-0/+2
* Make it format.Fred Drake2000-08-191-166/+177
* Adding tests of the "attrs" optional argument, and of the js_outputMoshe Zadka2000-08-192-0/+20
* Use METH_VARARGS constant in example module.Andrew M. Kuchling2000-08-191-6/+6
* Test case for Cookie.pyAndrew M. Kuchling2000-08-192-0/+33
* Initial revision. Markup unchecked.Moshe Zadka2000-08-191-0/+232
* Added Tim O'Malley's Cookie.py module (master version atAndrew M. Kuchling2000-08-191-0/+718
* com_error(): Quiet gcc -Wall warning.Barry Warsaw2000-08-181-1/+0
* Remove a couple of warnings turned up by "gcc -Wall".Fred Drake2000-08-182-3/+4
* PyUnicode_AsUTF8String(): /F picks up what I missed: the local varBarry Warsaw2000-08-181-2/+0
* Do not set a MemoryError exception over another MemoryError exception,Vladimir Marangozov2000-08-181-0/+4
* Better conformance to the Python Style Guide: use spaces around operators.Fred Drake2000-08-181-32/+33
* When a KeyboardInterrupt is caught, just use the "raise" syntax toFred Drake2000-08-181-2/+2
* Revise to use atexit instead of monkeying with sys.exitfunc directly.Fred Drake2000-08-181-9/+2
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-188-10/+20
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-182-2/+4
* Removed references to Py_FPROTO.Sjoerd Mullender2000-08-181-2/+2
* PyUnicode_AsUTF8String(): Don't need to explicitly incref str sinceBarry Warsaw2000-08-181-7/+3
* ANSI-fy function headers. Not much more can be done since I don'tBarry Warsaw2000-08-181-249/+82
* lad_dealloc(): if xp->x_fd == -1, it means the descriptor's alreadyBarry Warsaw2000-08-181-1/+3
* pattern_findall(): Plug small memory leak discovered by Insure.Barry Warsaw2000-08-181-3/+3
* init_locale(): This file defines the _locale module, so theBarry Warsaw2000-08-181-1/+1
* SyntaxError__classinit__(): Slight reorg for simplicity.Barry Warsaw2000-08-181-4/+4
* PyParser_ParseString(): When the err_ret structure is initialized, theBarry Warsaw2000-08-181-0/+2
* comples_from_string(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* make_pair(): When comparing the pointers, they must be cast to integerBarry Warsaw2000-08-181-2/+6
* PyFloat_FromString(): Move s_buffer[] up to the top-level functionBarry Warsaw2000-08-181-2/+1
* PyInstance_DoBinOp(): When comparing the pointers, they must be castBarry Warsaw2000-08-181-1/+4
* Added test for uintptr_t, the C9X acceptable way to spell "type toBarry Warsaw2000-08-183-212/+291
* Added #undef HAVE_UINTPTR_T for autoconf's delight.Barry Warsaw2000-08-181-0/+3
* Moved LONG_LONG #define from here to pyport.h.Barry Warsaw2000-08-181-3/+0
* Moved LONG_LONG #define from longobject.h to here, since it's neededBarry Warsaw2000-08-181-0/+43
* As pointed out by Denis S. Otkidach <den@analyt.chem.msu.ru>, xrange()Fred Drake2000-08-181-14/+15
* Adjust the way __getslice__() is marked as deprecated; this will alsoFred Drake2000-08-181-2/+4
* Fix a markup error that caused formatting to fail.Fred Drake2000-08-181-16/+17
* Mention the new 'import X as Y' syntaxAndrew M. Kuchling2000-08-171-0/+4
* Document the returns_unicode attributeAndrew M. Kuchling2000-08-171-4/+11