summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added pascal-style string name of preference file resource, and bracketedJack Jansen1999-01-301-1/+6
| | | | C struct declarations with #ifndef rez
* From: Mike Orr <mso@oz.net>Guido van Rossum1999-01-301-1/+1
| | | | | | | | | | | In the docstring of ConfigParser.py (Python 1.5.2b1): read(*filenames) -- read and parse the list of named configuration files should be: read(filenames) -- read and parse the list of named configuration files The method accepts a list, not a bunch of positional arguments. Which is good, the list is much more convenient.
* Embarrassing: remove a debug print statement from set_break() for theGuido van Rossum1999-01-291-1/+0
| | | | second time!
* Updated comments on version of XML package needed.Fred Drake1999-01-291-1/+2
|
* Use win32api.GetFullPathName(path) if it exists to implement abspath().Guido van Rossum1999-01-291-3/+7
|
* Added the info tarball to the tarballs target. Added the README toFred Drake1999-01-291-2/+3
| | | | the info tarball.
* A README file for the info tarball.Fred Drake1999-01-291-0/+16
|
* Added support to handle \versionadded in a reasonable way.Fred Drake1999-01-291-9/+19
|
* Support a canonical() method, implementable by a derived class, to beGuido van Rossum1999-01-291-6/+20
| | | | | | | | applied to all filenames before they are compared, looked up in the breaks dictionary, etc. The default implementation does nothing -- it's implented as fast as possible via str(). A useful implementation would make everything a absolute, e.g. return os.path.normcase( os.path.abspath(filename)).
* setup_readline(): Added a comment about memory leak (reported byBarry Warsaw1999-01-291-1/+5
| | | | | | | | | Purify) being caused by a bug in the readline library. Nothing we can do about it. Cause: readline_initialize_everything() throws away the return value from rl_read_init_file(), but that happens to be the last reference to a dynamically allocated char*.
* Added missing DECREF's in the error branches when creating a compressor orAndrew M. Kuchling1999-01-291-1/+12
| | | | | | decompressor object. This required adding a flag to the struct which is true if initialisation was completed; on object destruction, deflateEnd() is only called if the flag is true.
* Define %descriptor.class, since it's used.Fred Drake1999-01-291-0/+4
|
* Be a little smarter on some attribute values, making an assumption aboutFred Drake1999-01-291-1/+4
| | | | the DTD.
* fixup_descriptors(): Change the way we look for descriptor nodes;Fred Drake1999-01-291-4/+15
| | | | | this takes 5 minutes off the conversion of the whole tree by reducing the number of tree-traversals from 14 to 1.
* initmain(): Nailed a memory leak. bimod must be DECREF'd!Barry Warsaw1999-01-291-0/+1
|
* Added the Doc/sgml/ directory to the tarball.Fred Drake1999-01-291-1/+1
|
* Rewrite code that converts the little descriptor environments to buildFred Drake1999-01-291-53/+114
| | | | | the right <signature>s and <description>. This seems to work a lot better now!
* Use only the height to decide whether to zoom in or out.Guido van Rossum1999-01-291-7/+8
|
* bltin_exc[]: EnvironmentError is not a "leaf exception", so set it'sBarry Warsaw1999-01-291-1/+1
| | | | leaf_exc flag to zero otherwise the name leaks memory.
* Added table entries for \funcline and \funclineni.Fred Drake1999-01-291-0/+2
|
* Add abspath()Guido van Rossum1999-01-294-0/+28
|
* Document abspath() (implementation is forthcoming).Guido van Rossum1999-01-291-0/+6
|
* Define a general entity "&version;" that can be used as the current majorFred Drake1999-01-293-0/+10
| | | | | version of the Python interpreter. This is \version in the LaTeX format of the documentation.
* Convert <version> to &version;.Fred Drake1999-01-291-0/+2
|
* doh! added missing comma (will check before committing in the future ;-) -- jvrJust van Rossum1999-01-291-1/+1
|
* A few scribbles toward the DTD.Fred Drake1999-01-292-0/+47
|
* added path entry for NumPy -- jvrJust van Rossum1999-01-291-0/+1
|
* Standard ISO entities.Fred Drake1999-01-2920-0/+1231
|
* Pythonpath converted to Rez source, and vers resource removed fromJack Jansen1999-01-2910-0/+119
| | | | | bundle to its own Rez source file. With these changes various resources are all set automatically from .h files.
* The OASIS Exchange table model public text.Fred Drake1999-01-292-0/+302
|
* Correct typo (Py_MethodDef doesn't exist). Reported by Uwe Zessin.Guido van Rossum1999-01-291-1/+1
|
* Projects moved to Mac:Build. The macfreeze projects still need sorting out.Jack Jansen1999-01-2939-3493/+0
|
* Fixed an absolute path.Jack Jansen1999-01-291-0/+0
|
* Re-committed as AppleSingleJack Jansen1999-01-2918-0/+0
|
* Update the docstring.Fred Drake1999-01-281-101/+159
| | | | | | | | | | | | | | Lots of changes to get the paragraph marking to work, and not go into an infinite recursion. Start to rationalize markup of method signatures; not complete. find_all_elements(): similar to getElementsByTagName(), but operates on the not-quite-legal fragments we deal with here. Simplifies several individual transforms. fixup_sectionauthors(): Convert \sectionauthor items to <author> just after the <section>'s <title>.
* Added table entries for \methodline, \methodlineni.Fred Drake1999-01-281-0/+2
|
* "numberic" --> "numeric", two placesFred Drake1999-01-281-2/+2
|
* Constructor arguments for classes should be called <args>.Fred Drake1999-01-281-1/+1
|
* Make sure the Tcl variables are shared between windows.Guido van Rossum1999-01-282-9/+9
|
* Move menu/key binding code from Bindings.py to EditorWindow.py,Guido van Rossum1999-01-283-79/+127
| | | | | | | | with changed APIs -- it makes much more sense there. Also add a new feature: if the first character of a menu label is a '!', it gets a checkbox. Checkboxes are bound to Boolean Tcl variables that can be accessed through the new getvar/setvar/getrawvar API; the variable is named after the event to which the menu is bound.
* Add Quit button to the debugger window.Guido van Rossum1999-01-281-0/+6
|
* Added a -s option which is useful for narrowing down memory leaks.Barry Warsaw1999-01-281-4/+42
| | | | | With -s only a single test is run. The next test run is chosen sequentially from the list of all tests.
* Added a new test for old filter() memory leakBarry Warsaw1999-01-281-0/+17
|
* PyInit_zlib(): Plug a small memory leak. Jeremy is looking into theBarry Warsaw1999-01-281-0/+1
| | | | more severe ones.
* Added \modulesynopsis.Fred Drake1999-01-281-0/+2
|
* When find_again() finds exactly the current selection, it's a failure.Guido van Rossum1999-01-281-0/+8
|
* Rename idle -> idle.pyGuido van Rossum1999-01-281-0/+0
|
* builtin_map(): A better fix for the previous leak plug (rememberBarry Warsaw1999-01-281-3/+6
| | | | | | PyList_Append steals a reference even if it fails). builtin_filter(): Had the same leak problem as builtin_map().
* Updated for new build and plugin pathsJack Jansen1999-01-283-11/+11
|
* Everything now builds in the right location,.Jack Jansen1999-01-2818-0/+0
|