| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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. | ||||
| * | Revert to ver 1.22, which was the version before the nested scopes | Jeremy Hylton | 2001-03-23 | 1 | -91/+106 |
| | | | | | | docs were introduced. This loses a few small changes, but Fred says that's okay. | ||||
| * | Small formatting improvements. | Ka-Ping Yee | 2001-03-23 | 1 | -10/+13 |
| | | |||||
| * | Show inherited methods, with hyperlinks to the base class they came from. | Ka-Ping Yee | 2001-03-23 | 1 | -112/+168 |
| | | | | | | | | | | | | Font adjustment to improve viewing in Windows (the default monospaced font, Courier New, seems to have no reasonable size in IE!) Improve error handling. Try very hard to distinguish between failure to find a module and failure during the module importing process. Improve reloading behaviour. (Still needs some work.) Add '.' to sys.path when running as a script at the command-line. Don't automatically assume '-g' based on the platform. We'll just have the batch file supply -g. | ||||
| * | Bump version number. | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | | |||||
| * | Revert the 1.8 patch, since it's implicated in nasty blowups (see Pyhon-Dev). | Tim Peters | 2001-03-23 | 1 | -1/+1 |
| | | |||||
| * | Provide a StopTokenizing exception for conveniently exiting the loop. | Ka-Ping Yee | 2001-03-23 | 1 | -10/+11 |
| | | |||||
| * | Explain the difference between NL and NEWLINE. | Ka-Ping Yee | 2001-03-23 | 1 | -1/+4 |
| | | |||||
| * | Give a slightly better explanation of excepthook. | Ka-Ping Yee | 2001-03-23 | 1 | -4/+6 |
| | | |||||
| * | Don't have trace() skip the top frame; return them all. | Ka-Ping Yee | 2001-03-23 | 2 | -6/+7 |
| | | |||||
| * | When creating an attribute node using createAttribute() or | Fred Drake | 2001-03-23 | 1 | -1/+2 |
| | | | | | | | createAttributeNS(), use the parallel setAttributeNode() or setAttributeNodeNS() to add the node to the document -- do not assume that setAttributeNode() will operate properly for both. | ||||
| * | Update to the most recent weakref changes. | Fred Drake | 2001-03-23 | 1 | -11/+4 |
| | | |||||
| * | Convert the weakref test suite to PyUNIT, and add tests that exercise weak | Fred Drake | 2001-03-23 | 2 | -260/+252 |
| | | | | | references on function objects and both bound and unbound methods. | ||||
| * | When the regression test is run in verbose mode, make the PyUNIT-based | Fred Drake | 2001-03-23 | 1 | -1/+1 |
| | | | | | tests a little noisier, providing more progress information. | ||||
| * | Add support for weak references to the function and method types. | Fred Drake | 2001-03-23 | 2 | -3/+13 |
| | | |||||
| * | Add the necessary field for weak reference support to the function and | Fred Drake | 2001-03-23 | 2 | -0/+2 |
| | | | | | method types. | ||||
| * | Fix memory leak with SyntaxError. (The DECREF was originally hidden | Guido van Rossum | 2001-03-23 | 1 | -0/+1 |
| | | | | | | inside a piece of code that was deemed reduntant; the DECREF was unfortunately *not* redundant!) | ||||
