Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update the docstring. | Fred Drake | 1999-01-28 | 1 | -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 Drake | 1999-01-28 | 1 | -0/+2 |
| | |||||
* | "numberic" --> "numeric", two places | Fred Drake | 1999-01-28 | 1 | -2/+2 |
| | |||||
* | Constructor arguments for classes should be called <args>. | Fred Drake | 1999-01-28 | 1 | -1/+1 |
| | |||||
* | Make sure the Tcl variables are shared between windows. | Guido van Rossum | 1999-01-28 | 2 | -9/+9 |
| | |||||
* | Move menu/key binding code from Bindings.py to EditorWindow.py, | Guido van Rossum | 1999-01-28 | 3 | -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 Rossum | 1999-01-28 | 1 | -0/+6 |
| | |||||
* | Added a -s option which is useful for narrowing down memory leaks. | Barry Warsaw | 1999-01-28 | 1 | -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 leak | Barry Warsaw | 1999-01-28 | 1 | -0/+17 |
| | |||||
* | PyInit_zlib(): Plug a small memory leak. Jeremy is looking into the | Barry Warsaw | 1999-01-28 | 1 | -0/+1 |
| | | | | more severe ones. | ||||
* | Added \modulesynopsis. | Fred Drake | 1999-01-28 | 1 | -0/+2 |
| | |||||
* | When find_again() finds exactly the current selection, it's a failure. | Guido van Rossum | 1999-01-28 | 1 | -0/+8 |
| | |||||
* | Rename idle -> idle.py | Guido van Rossum | 1999-01-28 | 1 | -0/+0 |
| | |||||
* | builtin_map(): A better fix for the previous leak plug (remember | Barry Warsaw | 1999-01-28 | 1 | -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 paths | Jack Jansen | 1999-01-28 | 3 | -11/+11 |
| | |||||
* | Everything now builds in the right location,. | Jack Jansen | 1999-01-28 | 18 | -0/+0 |
| | |||||
* | Checking in the projects that have been converted so far. | Jack Jansen | 1999-01-28 | 10 | -0/+0 |
| | |||||
* | Implement -OO; "unsafe" optimization that removes docstrings. | Guido van Rossum | 1999-01-28 | 1 | -0/+3 |
| | | | | Marc-Andre Lemburg. | ||||
* | Document -OO; "unsafe" optimization that removes docstrings. | Guido van Rossum | 1999-01-28 | 2 | -1/+11 |
| | | | | Marc-Andre Lemburg. | ||||
* | Re-commit in applesingle | Jack Jansen | 1999-01-28 | 7 | -0/+0 |
| | |||||
* | Improvement of b/w compat note in help text for clear, by Richard Wolff. | Guido van Rossum | 1999-01-28 | 1 | -1/+2 |
| | |||||
* | added default sys.path entry for NumPy -- jvr | Just van Rossum | 1999-01-28 | 1 | -0/+0 |
| | |||||
* | Starting on the new project/plugin structure. Far from complete... | Jack Jansen | 1999-01-28 | 40 | -0/+3494 |
| | |||||
* | Slight reworking of this test. If nis.maps() gives a nis.error, then | Barry Warsaw | 1999-01-28 | 1 | -2/+5 |
| | | | | | raise an ImportError if not running verbose. This signals to the regression framework that this test isn't applicable. | ||||
* | builtin_map(): Nailed memory leak. PyList_Append() borrows a | Barry Warsaw | 1999-01-28 | 1 | -0/+1 |
| | | | | | reference, so you have to DECREF the appended value. This was a fun one! | ||||
* | builtin_complex(): Nailed memory leak. This one's in the instance | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | | | | | | test for classes with a __complex__() method. The attribute is pulled out of the instance with PyObject_GetAttr() but this transfers ownership and the function object was never DECREF'd. | ||||
* | Get rid of do_clear_break / do_clb command -- it is redundant. | Guido van Rossum | 1999-01-27 | 1 | -20/+0 |
| | | | | (It was left in accidentally after a long and arduous 3-way patch session.) | ||||
* | pcre_exec(): Andrew Kuchling's patch for pcre memory leak. | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | |||||
* | Add the info "dir" fragment to the info tarball. | Fred Drake | 1999-01-27 | 1 | -1/+1 |
| | |||||
* | Fragment of an info "dir" file for the Python documentation. | Fred Drake | 1999-01-27 | 1 | -0/+8 |
| | |||||
* | Simplify slightly. | Fred Drake | 1999-01-27 | 1 | -4/+2 |
| | |||||
* | Don't build info for the Macintosh module reference by default; it | Fred Drake | 1999-01-27 | 1 | -1/+2 |
| | | | | doesn't do well. | ||||
* | initerrno(): Nailed a not-so-tiny memory leak. The de dictionary is | Barry Warsaw | 1999-01-27 | 1 | -1/+2 |
| | | | | | put into the module dict, but is never DECREF'd in this function, so it and all its contents leak. | ||||
* | PyImport_ReloadModule(): Nailed a small memory leak. In the | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | | | | | else-clause of the subname test, the parentname object was never DECREF'd. | ||||
* | Patches by William Lewis for Nextstep descendants. | Guido van Rossum | 1999-01-27 | 13 | -328/+689 |
| | |||||
* | PyLong_FromString(): Nailed a small memory leak. In the str==start | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | | | | | test, we forgot that z is still pointing to a real live object. DECREF() it before returning. | ||||
* | \py@linkToName: New macro to consolidate support for most internal | Fred Drake | 1999-01-27 | 1 | -18/+18 |
| | | | | | | | | hyperlinking in the PDF version. This also allows many of the macros that do this stuff to be a good bit more readable. Takes the target name and link content as parameters. Use \py@linkToName for all internal links. | ||||
* | Added the files for the repr and ConfigParser modules. | Fred Drake | 1999-01-27 | 1 | -1/+3 |
| | |||||
* | Document the repr module. This removes the entire "Code objects and | Fred Drake | 1999-01-27 | 3 | -9/+126 |
| | | | | files, debugger etc." section from "Undocumented Modules"! | ||||
* | err_input(): Nailed a small memory leak. If the error is E_INTR, the | Barry Warsaw | 1999-01-27 | 1 | -1/+2 |
| | | | | | | | | | v temporary variable was never decref'd. Test this by starting up the interpreter, hitting C-c, then immediately exiting. Same potential leak can occur if error is E_NOMEM, since the return is done in the case block. Added Py_XDECREF(v); to both blocks, just before the return. | ||||
* | _PySys_Init(): Nailed small memory leak. The stringobject created for | Barry Warsaw | 1999-01-27 | 1 | -0/+1 |
| | | | | sys.version was missing a Py_XDECREF(). | ||||
* | Don't say that the module defines the "following functions" and then | Fred Drake | 1999-01-27 | 1 | -9/+5 |
| | | | | | | | only describe one; say "following function" instead! Merge the two one-sentence paragraphs into a single paragraph, so it doesn't look too stupid. | ||||
* | cleaned up ugly hack related to activate events and suspend/resume -- jvr | Just van Rossum | 1999-01-27 | 1 | -14/+8 |
| | |||||
* | Re-format the module docstring and document the new get() argument. | Barry Warsaw | 1999-01-26 | 1 | -26/+29 |
| | |||||
* | Incorporate changes for patched version of ConfigParser. | Fred Drake | 1999-01-26 | 1 | -5/+8 |
| | |||||
* | Patch by Chris Petrilli (not really tested since I don't know this | Guido van Rossum | 1999-01-26 | 1 | -6/+17 |
| | | | | | | | module myself) to accept an option keyword argument (vars) that is substituted on top of the defaults that were setup in __init__. The patch also fixes the problem where you can't have recusive references inside your configuration file. | ||||
* | \py@modindex: Format the index entry for the module index more like | Fred Drake | 1999-01-26 | 1 | -1/+1 |
| | | | | | that used in the "normal" index. No visual difference, but more easily processed by helper scripts. | ||||
* | Documentation for the ConfigParser module, by Christopher G. Petrilli | Fred Drake | 1999-01-26 | 3 | -3/+117 |
| | | | | (petrilli@amber.org). | ||||
* | Added Sherlock source for Python documentation, and added icons to them all. | Jack Jansen | 1999-01-26 | 3 | -0/+0 |
| | |||||
* | expandtabs__doc__: blank line which was not terminated with \n\ caused | Barry Warsaw | 1999-01-26 | 1 | -1/+0 |
| | | | | the SunPro C compiler to choke. Removed this redundant line. |