summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* no changes other than indentation level (now 4) and comment reflow.Greg Stein2000-07-183-1218/+1227
| | | | use "cvs diff -b" to verify.
* Fixed problems with UTF error reporting macros and some formatting bugs.Marc-André Lemburg2000-07-171-45/+64
|
* Restore PyXXX_Length() APIs for binary compatibility.Marc-André Lemburg2000-07-172-6/+42
| | | | | | New code will see the macros and therefore use the PyXXX_Size() APIs instead. By Thomas Wouters.
* gcc is being stupid with if/else constructsGreg Stein2000-07-171-6/+14
| | | | clean out some other warnings
* * split on / or \Skip Montanaro2000-07-171-3/+5
| | | | * case insensitive comparison
* damn! cut-n-paste from ntpath forgot the "import re"Skip Montanaro2000-07-171-0/+1
|
* * split on / or \Skip Montanaro2000-07-171-6/+3
| | | | * case insensitive
* At GVR's request.Paul Prescod2000-07-161-344/+0
|
* stop messing around with goto and just write the macro correctly.Greg Stein2000-07-161-7/+6
|
* Online help facility for the Python interprter and other interactivePaul Prescod2000-07-161-0/+344
| | | | environments.
* More of Rob W. W. Hooft's spelling fixes. The only ones left now are theThomas Wouters2000-07-165-12/+12
| | | | | | | | | | | distutils patches, which I'll leave to the distutils maintainers. Tip: review the patch like this: grep "^[\!+-] " <patchfile> To get a quick and easy way to review the actual changes. Most of the changes are single-line ones, anyway.
* Rob W. W. Hooft's spelling fixes for the Library Reference. I hopeThomas Wouters2000-07-1661-92/+92
| | | | | | | | | SourceForge doesn't choke on this batch :-) I'm not entirely sure this is 100% correct. The patch changes an \index{persistency} to \index{presistence}, and I don't know what \index{} does. But it seems to do so persi--er, consistently, so I hope it isn't a problem.
* - change \x to mean "byte" also in unicode literalsFredrik Lundh2000-07-161-3/+5
| | | | (patch #100912)
* Fix fatal compiler (MSVC6) error:Tim Peters2000-07-161-0/+1
| | | | | unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}'
* split and join on "/" in commonprefixSkip Montanaro2000-07-161-6/+3
|
* Fix to a bug found by Florian Weimer:Marc-André Lemburg2000-07-161-1/+2
| | | | | | | | | | | | | | | | The UTF-8 decoder is still buggy (i.e. it doesn't pass Markus Kuhn's stress test), mainly due to the following construct: #define UTF8_ERROR(details) do { \ if (utf8_decoding_error(&s, &p, errors, details)) \ goto onError; \ continue; \ } while (0) (The "continue" statement is supposed to exit from the outer loop, but of course, it doesn't. Indeed, this is a marvelous example of the dangers of the C programming language and especially of the C preprocessor.)
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-16102-184/+184
| | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
* Bugfix by Rob W. W. Hooft, from his spelling fixes patch. This one is aThomas Wouters2000-07-162-2/+2
| | | | genuine bug, so I checked it in separately.
* Implemented getdefaultlocale() for macintosh, after an idea by Fredrik.Jack Jansen2000-07-151-2/+10
|
* Modified the standard mac preamble so we include pymactoolbox.h inJack Jansen2000-07-151-35/+1
| | | | stead of defining lots of function prototypes in each module.
* ScannerPREUH3.initpatterns() should call Scanner.initpatterns() so theJack Jansen2000-07-151-0/+1
| | | | new comment patterns get included.
* Oops, forgot to run autoheader before checking in the _getpty move toThomas Wouters2000-07-151-0/+3
| | | | posixmodule.
* -- fixed the comment, tooFredrik Lundh2000-07-151-3/+3
|
* -- note to self: wait until 'cvs commit' has finished beforeFredrik Lundh2000-07-151-3/+2
| | | | you edit the file.
* -- changed default encoding to "ascii". you can still changeFredrik Lundh2000-07-151-17/+13
| | | | the default via site.py...
* Fix in PyList_New(). With GC enabled and when out of memory,Vladimir Marangozov2000-07-151-1/+1
| | | | free() the GC pointer, not the object pointer.
* Break a cycle created in the saboteur() function.Vladimir Marangozov2000-07-151-2/+5
|
* Got rid of obsolete HAVE_UNIVERSAL_HEADERS test and SystemSevenOrLater define.Jack Jansen2000-07-149-83/+0
|
* Test for TARGET_API_MAC_CARBON with #if in stead of #ifdef.Jack Jansen2000-07-1444-223/+223
|
* include stdio.h for sprintf prototype.Jack Jansen2000-07-141-0/+1
|
* pymactoolbox.h contains protoypes for all externally visible toolbox moduleJack Jansen2000-07-1445-916/+244
| | | | | functions. Include it in stead of duplicating the declarations everywhere. Also cleaned up toolbox module exports, and got rid of resNotFound error.
* include macdefs.h for declaration of getwd, if non-gusi python.Jack Jansen2000-07-141-0/+1
|
* PyMac_PromptGetFile and PyMac_GetDirectory don't exist in carbonpython.Jack Jansen2000-07-142-5/+4
|
* Don't declare sync if we use gusi.Jack Jansen2000-07-141-0/+2
|
* Document the second round of ConfigParser changes.Eric S. Raymond2000-07-141-1/+14
|
* Move (actually copy) support for the sgi._getpty() function intoThomas Wouters2000-07-143-8/+27
| | | | | | | posix.openpty(). And conveniently also check if CVS write access really works. Closes SF patch #100722
* ConfigParser enhancements to edit existing configs, part 2Eric S. Raymond2000-07-141-5/+41
|
* Typo fix from Bastian KleineidamAndrew M. Kuchling2000-07-141-1/+1
|
* moving files to nondist/sf-htmlPeter Schneider-Kamp2000-07-141-390/+0
|
* Gosh - clean up that messy HTML; make it valid XHTML instead.Vladimir Marangozov2000-07-141-346/+330
|
* Break the cycles after testing cmp() on cyclic objects.Vladimir Marangozov2000-07-141-0/+2
|
* added information how to edit pages at http://python.sourceforge.netPeter Schneider-Kamp2000-07-141-8/+25
|
* small FAQ about Python CVS and patches at SourceForgePeter Schneider-Kamp2000-07-141-0/+389
|
* Use PyObject_AsFileDescriptorAndrew M. Kuchling2000-07-132-68/+4
|
* Document PyObject_AsFileDescriptorAndrew M. Kuchling2000-07-132-0/+10
|
* Added PyObject_AsFileDescriptor, which checks for integer, long integer,Andrew M. Kuchling2000-07-132-0/+59
| | | | or .fileno() method
* ANSI-fication (got lost in the deep seas of source forge <wink>)Peter Schneider-Kamp2000-07-131-195/+60
|
* fix PyXXX_Length macros as suggested by FredJeremy Hylton2000-07-131-3/+3
|
* Patch by Toby Dickenson, mentored by Mark Hammond, to supportGuido van Rossum2000-07-134-7/+62
| | | | | automatically finding (most of) the standard PYD extensions, and to remove the hardcoded Python version.
* Apply Greg Kochanski's fix for open/265.Eric S. Raymond2000-07-131-4/+1
|