Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Oops, ISO translation was off. Fixed. | Jack Jansen | 2001-03-27 | 3 | -27/+27 |
| | |||||
* | Add Robin Thomas (author of the slice() comparability hack). | Guido van Rossum | 2001-03-27 | 1 | -0/+1 |
| | |||||
* | Use Guido's trick for always extracting the version number from a | Martin v. Löwis | 2001-03-27 | 1 | -1/+4 |
| | | | | CVS Revision string correctly, even under -kv. | ||||
* | Fix some reloading problems (still more work needed). | Ka-Ping Yee | 2001-03-27 | 1 | -6/+16 |
| | | | | | Add hyperlinks to PEPs at http://www.python.org/peps/pep-%04d.html Remove script directory (dirname of sys.argv[0]) from sys.path. | ||||
* | Disable fused-add-mul instructions. They give a nonstandard result for some ↵ | Jack Jansen | 2001-03-26 | 1 | -0/+0 |
| | | | | things that test_coercion complains about. The added performance is probably minimal for Python anyway. | ||||
* | Bug fix: compile() called from a nested-scopes-enable Python was not | Jeremy Hylton | 2001-03-26 | 1 | -1/+1 |
| | | | | | using nested scopes to compile its argument. Pass compiler flags through to underlying compile call. | ||||
* | Turn SyntasWarning into SyntaxError for all code entered | Guido van Rossum | 2001-03-26 | 1 | -1/+12 |
| | | | | interactively. | ||||
* | Michael Hudson <mwh21@cam.ac.uk>: | Fred Drake | 2001-03-26 | 1 | -0/+329 |
| | | | | | | Add many more constants for some systems. This closes SF patch #410267. | ||||
* | Add a note that the "kfm" controller supports "konqueror" as well as the | Fred Drake | 2001-03-26 | 1 | -1/+3 |
| | | | | old KDE 1 "kfm" command. | ||||
* | Itamar Shtull-Trauring <itamar@maxnm.com>: | Fred Drake | 2001-03-26 | 2 | -18/+58 |
| | | | | | Add support to zipfile to support opening an archive represented by an open file rather than a file name. | ||||
* | Update auto-detection for Konqueror to include KDE 2 -- the kfm command is | Fred Drake | 2001-03-26 | 1 | -2/+5 |
| | | | | | gone; "konqueror" is the new name, and the command-line args are different. kfmclient has not changed, though. | ||||
* | Note missing explanation | Andrew M. Kuchling | 2001-03-26 | 1 | -2/+2 |
| | |||||
* | Fixed some access paths. | Jack Jansen | 2001-03-26 | 1 | -0/+0 |
| | |||||
* | Fixed ref count bug. Patch #411191. Found by Walter Dörwald. | Marc-André Lemburg | 2001-03-25 | 1 | -1/+3 |
| | |||||
* | get_version_string(): New function -- returns a Python string object that | Fred Drake | 2001-03-24 | 1 | -3/+24 |
| | | | | | | | | gives the CVS revision of this file even if it does not include the extra RCS "$Revision: " cruft. initpyexpat(): Use get_version_string() instead of hard-coding magic indexes into the RCS string (which may be affected by export options). | ||||
* | Document use_rawinput. (Although now that I think more about it, a | Guido van Rossum | 2001-03-24 | 1 | -1/+6 |
| | | | | | better solution would have been to factor out the raw_input() call and make it into an overridable method. Oh well, maybe later...) | ||||
* | This commit was manufactured by cvs2svn to create tag 'r21b2'.v2.1b2 | cvs2svn | 2001-03-23 | 1 | -0/+1 |
| | |||||
* | main(): Application of SF patch #405851, which allows this test to be | Barry Warsaw | 2001-03-23 | 1 | -0/+12 |
| | | | | | | | used by Jython. The tests in this module expect C locale, so be explicit about setting that (for CPython). However, in Jython, there is no C locale, so instead be explicit about setting the US locale. Closes the patch. | ||||
* | pydoc changed overnight in such a way that it no longer worked from the | Tim Peters | 2001-03-23 | 1 | -3/+3 |
| | | | | Windows start-menu item. This recovers from that. | ||||
* | Fix a memory leak -- there's no need to INCREF() the result of | Guido van Rossum | 2001-03-23 | 1 | -1/+0 |
| | | | | newreadlinesobject() in xreadlines(). | ||||
* | In Jython, `@' is not allowed in module names. Extend the TESTFN test | Barry Warsaw | 2001-03-23 | 1 | -3/+7 |
| | | | | to use "$test" when in Jython. Closes SF patch #403668. | ||||
* | Finishing touch to Ping's changes. This is a patch that Ping sent me | Guido van Rossum | 2001-03-23 | 1 | -11/+11 |
| | | | | | | | | but apparently he had to go to school, so I am checking it in for him. This makes PyRun_HandleSystemExit() a static instead, called handle_system_exit(), and let it use the current exception rather than passing in an exception. This slightly simplifies the code. | ||||
* | Two minor changes for better Jython compatibility. Finn Bock says: | Barry Warsaw | 2001-03-23 | 1 | -3/+3 |
| | | | | | | | | | | | | | Change 1: Not all 'modules' in sys.modules have a sensible __file__ attribute. Some of our java package can have the __file__ attribute set to None. Change 2: In jython we have the jython license file in <root> and the CPython license file in <root>/Lib. By reversing the search sequence jython will find and show the jython license file before the CPython file. Closes SF patch #405853. | ||||
* | Update Mac OS X platform notes. | Fred Drake | 2001-03-23 | 1 | -4/+8 |
| | | | | This closes SF bug #406191. | ||||
* | Strengthen the constraints on calling PyObject_GC_Fini(). | Fred Drake | 2001-03-23 | 1 | -0/+5 |
| | |||||
* | Make socket.getservbyname test optional on socket module having that | Barry Warsaw | 2001-03-23 | 1 | -5/+6 |
| | | | | | | attribute. Jython does not have this function. Closes SF patch #403667. | ||||
* | call_sys_exitfunc(): Remove unused variable f. | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | |||||
* | Change rfc822_escape() to ensure there's a consistent amount of whitespace | Andrew M. Kuchling | 2001-03-23 | 1 | -3/+4 |
| | | | | | after each newline, instead of just blindly inserting a space at the start of each line. (Improvement suggested by Thomas Wouters) | ||||
* | Add nested scopes spec to appendix. | Jeremy Hylton | 2001-03-23 | 4 | -32/+161 |
| | | | | | | | | | | | Add new opcodes LOAD_CLOSURE, LOAD_DEREF, STORE_DEREF, MAKE_CLOSURE to docs for dis module. Add docs for new function and code members in Sec. 3 of ref manual. They're present regardless of whether nested scopes are used. Remove description of default argument hack from Sec. 7 of the ref manual and refer the reader to the appendix. | ||||
* | Remove the annoying __version__ definitions. | Fred Drake | 2001-03-23 | 3 | -4/+0 |
| | |||||
* | Lots of small changes to make this work with the Python DOM bindings | Fred Drake | 2001-03-23 | 1 | -91/+95 |
| | | | | | | | (minidom in particular); it was using PyDOM which is now obsolete. Only write the output file on success -- this avoids updating the timestamp on the file on failure, which confuses "make". | ||||
* | setlocale(): In _locale-missing compatibility function, string | Barry Warsaw | 2001-03-23 | 1 | -2/+1 |
| | | | | comparison should be done with != instead of "is not". | ||||
* | Pick up the "encode" function from esistools instead of defining our own | Fred Drake | 2001-03-23 | 1 | -15/+9 |
| | | | | | | (broken) version. Remove Conversion.err_write() -- use dbgmsg() consistently. | ||||
* | No quotes around the "future" in the first use of the term "future | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | | | | statement". | ||||
* | Re-write to no longer depend on an old version of PyXML. This now | Fred Drake | 2001-03-23 | 1 | -46/+273 |
| | | | | | | | implements a SAX XMLReader interface instead of the old Builder interface used with PyDOM (now obsolete). This only depends on the standard library, not PyXML. | ||||
* | Pick the "escape" function from the standard library instead of from PyXML. | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | |||||
* | Add conversions for more of the markup -- not all of this was around when | Fred Drake | 2001-03-23 | 1 | -1/+32 |
| | | | | this file was written! | ||||
* | Add entry for the futures appendix in the reference manual. | Fred Drake | 2001-03-23 | 1 | -3/+3 |
| | | | | Correct the comment at the top of the file. | ||||
* | Include the futures appendix. | Fred Drake | 2001-03-23 | 1 | -0/+3 |
| | |||||
* | Revise the markup so that this formats and uses markup consistently with | Fred Drake | 2001-03-23 | 1 | -28/+32 |
| | | | | the rest of the documentation. | ||||
* | Several changes for Jython portability. This closes SF patch | Barry Warsaw | 2001-03-23 | 1 | -9/+18 |
| | | | | | | | | | | | | | | | | | #403666. Specifically, In codestr, force `c' to be global. It's unclear what the semantics should be for a code object compiled at module scope, but bound and run in a function. In CPython, `c' is global (by accident?) while in Jython, `c' is local. The intent of the test clearly is to make `c' global, so let's be explicit about it. Jython also does not have a __builtins__ name in the module's namespace, so we use a more portable alternative (though I'm not sure why the test requires "__builtins__" in the g namespace). Finally, skip the new.code() test if the new module doesn't have a `code' attribute. Jython will never have this. | ||||
* | flesh out __all__ | Jeremy Hylton | 2001-03-23 | 1 | -14/+6 |
| | | | | | | remove debugging code in if __debug__: add get_children() method on SymbolTable | ||||
* | Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit(). | Ka-Ping Yee | 2001-03-23 | 1 | -32/+37 |
| | | | | sys.exitfunc gets the last word on the exit status of the program. | ||||
* | Extend isclass() to work for extension classes (by looking for __bases__). | Ka-Ping Yee | 2001-03-23 | 1 | -1/+1 |
| | |||||
* | Add some initial text for the appendix on future statements and nested scopes. | Jeremy Hylton | 2001-03-23 | 1 | -0/+149 |
| | |||||
* | Note that assignments to __debug__ are illegal | Jeremy Hylton | 2001-03-23 | 1 | -0/+2 |
| | |||||
* | News items for my recent checkins | Jeremy Hylton | 2001-03-23 | 1 | -0/+16 |
| | |||||
* | Script for starting pydoc with a GUI in Windows. | Ka-Ping Yee | 2001-03-23 | 1 | -0/+2 |
| | |||||
* | Make it illegal to assign to __debug__ as per Guido's request. | Jeremy Hylton | 2001-03-23 | 1 | -1/+12 |
| | |||||
* | Browser compatibility fixes. | Ka-Ping Yee | 2001-03-23 | 1 | -7/+8 |
| | | | | Show methods aliased into a class from other classes. |