]> granicus.if.org Git - python/log
python
26 years agoAdd $(APPLICATION) or :Mac:Tools:IDE at the very start of sys.path to improve startup...
Just van Rossum [Sun, 31 Jan 1999 23:17:56 +0000 (23:17 +0000)]
Add $(APPLICATION) or :Mac:Tools:IDE at the very start of sys.path to improve startup time -- jvr

26 years agoThere are now three possible ways to run the IDE:
Just van Rossum [Sat, 30 Jan 1999 23:49:45 +0000 (23:49 +0000)]
There are now three possible ways to run the IDE:
- this file dropped onto the interpreter
- applet built by BuildApplet (contains only __main__)
- applet built by BuildIDE (contains all IDE modules)

26 years ago??? adding this file somehow failed -- jvr
Just van Rossum [Sat, 30 Jan 1999 22:40:26 +0000 (22:40 +0000)]
??? adding this file somehow failed -- jvr

26 years agoFirst Checked In.
Just van Rossum [Sat, 30 Jan 1999 22:39:17 +0000 (22:39 +0000)]
First Checked In.

26 years agoadded ntpath and win32api to MAC_MAYMISS_MODULES -- jvr
Just van Rossum [Sat, 30 Jan 1999 22:33:40 +0000 (22:33 +0000)]
added ntpath and win32api to MAC_MAYMISS_MODULES -- jvr

26 years agochanged chars in source > chr(127) to ASCII: CVS corrupted them -- jvr
Just van Rossum [Sat, 30 Jan 1999 22:32:40 +0000 (22:32 +0000)]
changed chars in source > chr(127) to ASCII: CVS corrupted them -- jvr

26 years agoset 'preload' attribute for __main__ PYC resource -- jvr
Just van Rossum [Sat, 30 Jan 1999 22:31:26 +0000 (22:31 +0000)]
set 'preload' attribute for __main__ PYC resource -- jvr

26 years agoskip 'vers' resource when copying resources from templeate -- jvr
Just van Rossum [Sat, 30 Jan 1999 21:20:10 +0000 (21:20 +0000)]
skip 'vers' resource when copying resources from templeate -- jvr

26 years agoadded some try/excepts so it also works when certain projects/folders are not availab...
Just van Rossum [Sat, 30 Jan 1999 18:27:12 +0000 (18:27 +0000)]
added some try/excepts so it also works when certain projects/folders are not available -- jvr

26 years agoRemoved NumPy install code: it's obsolete -- jvr
Just van Rossum [Sat, 30 Jan 1999 17:50:15 +0000 (17:50 +0000)]
Removed NumPy install code: it's obsolete -- jvr

26 years agoFixed two typo's (Plugins -> PlugIns) and added some explicit path munging to allow...
Just van Rossum [Sat, 30 Jan 1999 17:46:34 +0000 (17:46 +0000)]
Fixed two typo's (Plugins -> PlugIns) and added some explicit path munging to allow the script to also work from the Scripts folder. Somehow either of these fixes solved a problem where it suddenly refused to make a PythonCore alias in the Extensions folder. -- jvr

26 years agoadded "delay console window until needed" preference
Just van Rossum [Sat, 30 Jan 1999 15:25:30 +0000 (15:25 +0000)]
added "delay console window until needed" preference

26 years agoAdded pascal-style string name of preference file resource, and bracketed
Jack Jansen [Sat, 30 Jan 1999 13:21:24 +0000 (13:21 +0000)]
Added pascal-style string name of preference file resource, and bracketed
C struct declarations with #ifndef rez

26 years agoFrom: Mike Orr <mso@oz.net>
Guido van Rossum [Sat, 30 Jan 1999 04:35:47 +0000 (04:35 +0000)]
From: Mike Orr <mso@oz.net>

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.

26 years agoEmbarrassing: remove a debug print statement from set_break() for the
Guido van Rossum [Fri, 29 Jan 1999 22:39:32 +0000 (22:39 +0000)]
Embarrassing: remove a debug print statement from set_break() for the
second time!

26 years agoUpdated comments on version of XML package needed.
Fred Drake [Fri, 29 Jan 1999 22:35:23 +0000 (22:35 +0000)]
Updated comments on version of XML package needed.

26 years agoUse win32api.GetFullPathName(path) if it exists to implement abspath().
Guido van Rossum [Fri, 29 Jan 1999 22:30:41 +0000 (22:30 +0000)]
Use win32api.GetFullPathName(path) if it exists to implement abspath().

26 years agoAdded the info tarball to the tarballs target. Added the README to
Fred Drake [Fri, 29 Jan 1999 22:23:25 +0000 (22:23 +0000)]
Added the info tarball to the tarballs target.  Added the README to
the info tarball.

26 years agoA README file for the info tarball.
Fred Drake [Fri, 29 Jan 1999 22:22:03 +0000 (22:22 +0000)]
A README file for the info tarball.

26 years agoAdded support to handle \versionadded in a reasonable way.
Fred Drake [Fri, 29 Jan 1999 22:12:29 +0000 (22:12 +0000)]
Added support to handle \versionadded in a reasonable way.

26 years agoSupport a canonical() method, implementable by a derived class, to be
Guido van Rossum [Fri, 29 Jan 1999 22:03:51 +0000 (22:03 +0000)]
Support a canonical() method, implementable by a derived class, to be
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)).

26 years agosetup_readline(): Added a comment about memory leak (reported by
Barry Warsaw [Fri, 29 Jan 1999 21:55:03 +0000 (21:55 +0000)]
setup_readline(): Added a comment about memory leak (reported by
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*.

26 years agoAdded missing DECREF's in the error branches when creating a compressor or
Andrew M. Kuchling [Fri, 29 Jan 1999 21:49:34 +0000 (21:49 +0000)]
Added missing DECREF's in the error branches when creating a compressor or
    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.

26 years agoDefine %descriptor.class, since it's used.
Fred Drake [Fri, 29 Jan 1999 21:38:14 +0000 (21:38 +0000)]
Define %descriptor.class, since it's used.

26 years agoBe a little smarter on some attribute values, making an assumption about
Fred Drake [Fri, 29 Jan 1999 21:35:50 +0000 (21:35 +0000)]
Be a little smarter on some attribute values, making an assumption about
the DTD.

26 years agofixup_descriptors(): Change the way we look for descriptor nodes;
Fred Drake [Fri, 29 Jan 1999 21:31:12 +0000 (21:31 +0000)]
fixup_descriptors():  Change the way we look for descriptor nodes;
this takes 5 minutes off the conversion of the whole tree by
reducing the number of tree-traversals from 14 to 1.

26 years agoinitmain(): Nailed a memory leak. bimod must be DECREF'd!
Barry Warsaw [Fri, 29 Jan 1999 21:30:22 +0000 (21:30 +0000)]
initmain(): Nailed a memory leak.  bimod must be DECREF'd!

26 years agoAdded the Doc/sgml/ directory to the tarball.
Fred Drake [Fri, 29 Jan 1999 21:22:55 +0000 (21:22 +0000)]
Added the Doc/sgml/ directory to the tarball.

26 years agoRewrite code that converts the little descriptor environments to build
Fred Drake [Fri, 29 Jan 1999 20:55:07 +0000 (20:55 +0000)]
Rewrite code that converts the little descriptor environments to build
the right <signature>s and <description>.  This seems to work a lot
better now!

26 years agoUse only the height to decide whether to zoom in or out.
Guido van Rossum [Fri, 29 Jan 1999 20:44:45 +0000 (20:44 +0000)]
Use only the height to decide whether to zoom in or out.

26 years agobltin_exc[]: EnvironmentError is not a "leaf exception", so set it's
Barry Warsaw [Fri, 29 Jan 1999 20:29:49 +0000 (20:29 +0000)]
bltin_exc[]: EnvironmentError is not a "leaf exception", so set it's
leaf_exc flag to zero otherwise the name leaks memory.

26 years agoAdded table entries for \funcline and \funclineni.
Fred Drake [Fri, 29 Jan 1999 20:09:27 +0000 (20:09 +0000)]
Added table entries for \funcline and \funclineni.

26 years agoAdd abspath()
Guido van Rossum [Fri, 29 Jan 1999 18:05:18 +0000 (18:05 +0000)]
Add abspath()

26 years agoDocument abspath() (implementation is forthcoming).
Guido van Rossum [Fri, 29 Jan 1999 18:05:05 +0000 (18:05 +0000)]
Document abspath() (implementation is forthcoming).

26 years agoDefine a general entity "&version;" that can be used as the current major
Fred Drake [Fri, 29 Jan 1999 16:42:37 +0000 (16:42 +0000)]
Define a general entity "&version;" that can be used as the current major
version of the Python interpreter.  This is \version in the LaTeX format
of the documentation.

26 years agoConvert <version> to &version;.
Fred Drake [Fri, 29 Jan 1999 16:29:25 +0000 (16:29 +0000)]
Convert <version> to &version;.

26 years agodoh! added missing comma (will check before committing in the future ;-) -- jvr
Just van Rossum [Fri, 29 Jan 1999 16:28:55 +0000 (16:28 +0000)]
doh! added missing comma (will check before committing in the future ;-) -- jvr

26 years agoA few scribbles toward the DTD.
Fred Drake [Fri, 29 Jan 1999 16:21:20 +0000 (16:21 +0000)]
A few scribbles toward the DTD.

26 years agoadded path entry for NumPy -- jvr
Just van Rossum [Fri, 29 Jan 1999 16:21:04 +0000 (16:21 +0000)]
added path entry for NumPy -- jvr

26 years agoStandard ISO entities.
Fred Drake [Fri, 29 Jan 1999 16:20:24 +0000 (16:20 +0000)]
Standard ISO entities.

26 years agoPythonpath converted to Rez source, and vers resource removed from
Jack Jansen [Fri, 29 Jan 1999 16:15:52 +0000 (16:15 +0000)]
Pythonpath converted to Rez source, and vers resource removed from
bundle to its own Rez source file. With these changes various resources
are all set automatically from .h files.

26 years agoThe OASIS Exchange table model public text.
Fred Drake [Fri, 29 Jan 1999 15:57:31 +0000 (15:57 +0000)]
The OASIS Exchange table model public text.

26 years agoCorrect typo (Py_MethodDef doesn't exist). Reported by Uwe Zessin.
Guido van Rossum [Fri, 29 Jan 1999 14:39:12 +0000 (14:39 +0000)]
Correct typo (Py_MethodDef doesn't exist).  Reported by Uwe Zessin.

26 years agoProjects moved to Mac:Build. The macfreeze projects still need sorting out.
Jack Jansen [Fri, 29 Jan 1999 13:33:51 +0000 (13:33 +0000)]
Projects moved to Mac:Build. The macfreeze projects still need sorting out.

26 years agoFixed an absolute path.
Jack Jansen [Fri, 29 Jan 1999 13:30:03 +0000 (13:30 +0000)]
Fixed an absolute path.

26 years agoRe-committed as AppleSingle
Jack Jansen [Fri, 29 Jan 1999 12:06:21 +0000 (12:06 +0000)]
Re-committed as AppleSingle

26 years agoUpdate the docstring.
Fred Drake [Thu, 28 Jan 1999 23:59:58 +0000 (23:59 +0000)]
Update the docstring.

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>.

26 years agoAdded table entries for \methodline, \methodlineni.
Fred Drake [Thu, 28 Jan 1999 23:49:37 +0000 (23:49 +0000)]
Added table entries for \methodline, \methodlineni.

26 years ago"numberic" --> "numeric", two places
Fred Drake [Thu, 28 Jan 1999 23:21:49 +0000 (23:21 +0000)]
"numberic" --> "numeric", two places

26 years agoConstructor arguments for classes should be called <args>.
Fred Drake [Thu, 28 Jan 1999 23:10:48 +0000 (23:10 +0000)]
Constructor arguments for classes should be called <args>.

26 years agoMake sure the Tcl variables are shared between windows.
Guido van Rossum [Thu, 28 Jan 1999 22:24:30 +0000 (22:24 +0000)]
Make sure the Tcl variables are shared between windows.

26 years agoMove menu/key binding code from Bindings.py to EditorWindow.py,
Guido van Rossum [Thu, 28 Jan 1999 22:02:47 +0000 (22:02 +0000)]
Move menu/key binding code from Bindings.py to EditorWindow.py,
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.

26 years agoAdd Quit button to the debugger window.
Guido van Rossum [Thu, 28 Jan 1999 22:00:30 +0000 (22:00 +0000)]
Add Quit button to the debugger window.

26 years agoAdded a -s option which is useful for narrowing down memory leaks.
Barry Warsaw [Thu, 28 Jan 1999 19:51:51 +0000 (19:51 +0000)]
Added a -s option which is useful for narrowing down memory leaks.
With -s only a single test is run.  The next test run is chosen
sequentially from the list of all tests.

26 years agoAdded a new test for old filter() memory leak
Barry Warsaw [Thu, 28 Jan 1999 19:44:06 +0000 (19:44 +0000)]
Added a new test for old filter() memory leak

26 years agoPyInit_zlib(): Plug a small memory leak. Jeremy is looking into the
Barry Warsaw [Thu, 28 Jan 1999 19:40:05 +0000 (19:40 +0000)]
PyInit_zlib(): Plug a small memory leak.  Jeremy is looking into the
more severe ones.

26 years agoAdded \modulesynopsis.
Fred Drake [Thu, 28 Jan 1999 19:30:49 +0000 (19:30 +0000)]
Added \modulesynopsis.

26 years agoWhen find_again() finds exactly the current selection, it's a failure.
Guido van Rossum [Thu, 28 Jan 1999 19:04:01 +0000 (19:04 +0000)]
When find_again() finds exactly the current selection, it's a failure.

26 years agoRename idle -> idle.py
Guido van Rossum [Thu, 28 Jan 1999 18:50:31 +0000 (18:50 +0000)]
Rename idle -> idle.py

26 years agobuiltin_map(): A better fix for the previous leak plug (remember
Barry Warsaw [Thu, 28 Jan 1999 18:49:12 +0000 (18:49 +0000)]
builtin_map(): A better fix for the previous leak plug (remember
PyList_Append steals a reference even if it fails).

builtin_filter(): Had the same leak problem as builtin_map().

26 years agoUpdated for new build and plugin paths
Jack Jansen [Thu, 28 Jan 1999 17:46:50 +0000 (17:46 +0000)]
Updated for new build and plugin paths

26 years agoEverything now builds in the right location,.
Jack Jansen [Thu, 28 Jan 1999 16:59:53 +0000 (16:59 +0000)]
Everything now builds in the right location,.

26 years agoChecking in the projects that have been converted so far.
Jack Jansen [Thu, 28 Jan 1999 15:17:49 +0000 (15:17 +0000)]
Checking in the projects that have been converted so far.

26 years agoImplement -OO; "unsafe" optimization that removes docstrings.
Guido van Rossum [Thu, 28 Jan 1999 15:08:09 +0000 (15:08 +0000)]
Implement -OO; "unsafe" optimization that removes docstrings.
Marc-Andre Lemburg.

26 years agoDocument -OO; "unsafe" optimization that removes docstrings.
Guido van Rossum [Thu, 28 Jan 1999 15:07:47 +0000 (15:07 +0000)]
Document -OO; "unsafe" optimization that removes docstrings.
Marc-Andre Lemburg.

26 years agoRe-commit in applesingle
Jack Jansen [Thu, 28 Jan 1999 15:01:06 +0000 (15:01 +0000)]
Re-commit in applesingle

26 years agoImprovement of b/w compat note in help text for clear, by Richard Wolff.
Guido van Rossum [Thu, 28 Jan 1999 14:38:32 +0000 (14:38 +0000)]
Improvement of b/w compat note in help text for clear, by Richard Wolff.

26 years agoadded default sys.path entry for NumPy -- jvr
Just van Rossum [Thu, 28 Jan 1999 13:50:29 +0000 (13:50 +0000)]
added default sys.path entry for NumPy -- jvr

26 years agoStarting on the new project/plugin structure. Far from complete...
Jack Jansen [Thu, 28 Jan 1999 13:42:55 +0000 (13:42 +0000)]
Starting on the new project/plugin structure. Far from complete...

26 years agoSlight reworking of this test. If nis.maps() gives a nis.error, then
Barry Warsaw [Thu, 28 Jan 1999 04:54:33 +0000 (04:54 +0000)]
Slight reworking of this test.  If nis.maps() gives a nis.error, then
raise an ImportError if not running verbose.  This signals to the
regression framework that this test isn't applicable.

26 years agobuiltin_map(): Nailed memory leak. PyList_Append() borrows a
Barry Warsaw [Thu, 28 Jan 1999 04:21:35 +0000 (04:21 +0000)]
builtin_map(): Nailed memory leak.  PyList_Append() borrows a
reference, so you have to DECREF the appended value.  This was a fun
one!

26 years agobuiltin_complex(): Nailed memory leak. This one's in the instance
Barry Warsaw [Wed, 27 Jan 1999 23:13:59 +0000 (23:13 +0000)]
builtin_complex(): Nailed memory leak.  This one's in the instance
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.

26 years agoGet rid of do_clear_break / do_clb command -- it is redundant.
Guido van Rossum [Wed, 27 Jan 1999 22:43:55 +0000 (22:43 +0000)]
Get rid of do_clear_break / do_clb command -- it is redundant.
(It was left in accidentally after a long and arduous 3-way patch session.)

26 years agopcre_exec(): Andrew Kuchling's patch for pcre memory leak.
Barry Warsaw [Wed, 27 Jan 1999 21:41:08 +0000 (21:41 +0000)]
pcre_exec(): Andrew Kuchling's patch for pcre memory leak.

26 years agoAdd the info "dir" fragment to the info tarball.
Fred Drake [Wed, 27 Jan 1999 18:50:21 +0000 (18:50 +0000)]
Add the info "dir" fragment to the info tarball.

26 years agoFragment of an info "dir" file for the Python documentation.
Fred Drake [Wed, 27 Jan 1999 18:49:44 +0000 (18:49 +0000)]
Fragment of an info "dir" file for the Python documentation.

26 years agoSimplify slightly.
Fred Drake [Wed, 27 Jan 1999 18:40:36 +0000 (18:40 +0000)]
Simplify slightly.

26 years agoDon't build info for the Macintosh module reference by default; it
Fred Drake [Wed, 27 Jan 1999 18:30:16 +0000 (18:30 +0000)]
Don't build info for the Macintosh module reference by default; it
doesn't do well.

26 years agoiniterrno(): Nailed a not-so-tiny memory leak. The de dictionary is
Barry Warsaw [Wed, 27 Jan 1999 18:04:05 +0000 (18:04 +0000)]
initerrno(): Nailed a not-so-tiny memory leak.  The de dictionary is
put into the module dict, but is never DECREF'd in this function, so
it and all its contents leak.

26 years agoPyImport_ReloadModule(): Nailed a small memory leak. In the
Barry Warsaw [Wed, 27 Jan 1999 17:54:20 +0000 (17:54 +0000)]
PyImport_ReloadModule(): Nailed a small memory leak.  In the
else-clause of the subname test, the parentname object was never
DECREF'd.

26 years agoPatches by William Lewis for Nextstep descendants.
Guido van Rossum [Wed, 27 Jan 1999 17:53:11 +0000 (17:53 +0000)]
Patches by William Lewis for Nextstep descendants.

26 years agoPyLong_FromString(): Nailed a small memory leak. In the str==start
Barry Warsaw [Wed, 27 Jan 1999 17:48:27 +0000 (17:48 +0000)]
PyLong_FromString(): Nailed a small memory leak.  In the str==start
test, we forgot that z is still pointing to a real live object.
DECREF() it before returning.

26 years ago\py@linkToName: New macro to consolidate support for most internal
Fred Drake [Wed, 27 Jan 1999 17:37:36 +0000 (17:37 +0000)]
\py@linkToName:  New macro to consolidate support for most internal
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.

26 years agoAdded the files for the repr and ConfigParser modules.
Fred Drake [Wed, 27 Jan 1999 17:21:09 +0000 (17:21 +0000)]
Added the files for the repr and ConfigParser modules.

26 years agoDocument the repr module. This removes the entire "Code objects and
Fred Drake [Wed, 27 Jan 1999 17:20:33 +0000 (17:20 +0000)]
Document the repr module.  This removes the entire "Code objects and
files, debugger etc." section from "Undocumented Modules"!

26 years agoerr_input(): Nailed a small memory leak. If the error is E_INTR, the
Barry Warsaw [Wed, 27 Jan 1999 16:39:40 +0000 (16:39 +0000)]
err_input(): Nailed a small memory leak.  If the error is E_INTR, the
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.

26 years ago_PySys_Init(): Nailed small memory leak. The stringobject created for
Barry Warsaw [Wed, 27 Jan 1999 16:33:19 +0000 (16:33 +0000)]
_PySys_Init(): Nailed small memory leak.  The stringobject created for
sys.version was missing a Py_XDECREF().

26 years agoDon't say that the module defines the "following functions" and then
Fred Drake [Wed, 27 Jan 1999 15:48:23 +0000 (15:48 +0000)]
Don't say that the module defines the "following functions" and then
only describe one; say "following function" instead!

Merge the two one-sentence paragraphs into a single paragraph, so it
doesn't look too stupid.

26 years agocleaned up ugly hack related to activate events and suspend/resume -- jvr
Just van Rossum [Wed, 27 Jan 1999 14:22:11 +0000 (14:22 +0000)]
cleaned up ugly hack related to activate events and suspend/resume -- jvr

26 years agoRe-format the module docstring and document the new get() argument.
Barry Warsaw [Tue, 26 Jan 1999 22:01:37 +0000 (22:01 +0000)]
Re-format the module docstring and document the new get() argument.

26 years agoIncorporate changes for patched version of ConfigParser.
Fred Drake [Tue, 26 Jan 1999 21:49:05 +0000 (21:49 +0000)]
Incorporate changes for patched version of ConfigParser.

26 years agoPatch by Chris Petrilli (not really tested since I don't know this
Guido van Rossum [Tue, 26 Jan 1999 19:29:25 +0000 (19:29 +0000)]
Patch by Chris Petrilli (not really tested since I don't know this
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.

26 years ago\py@modindex: Format the index entry for the module index more like
Fred Drake [Tue, 26 Jan 1999 19:23:09 +0000 (19:23 +0000)]
\py@modindex:  Format the index entry for the module index more like
that used in the "normal" index.  No visual difference, but
more easily processed by helper scripts.

26 years agoDocumentation for the ConfigParser module, by Christopher G. Petrilli
Fred Drake [Tue, 26 Jan 1999 15:47:59 +0000 (15:47 +0000)]
Documentation for the ConfigParser module, by Christopher G. Petrilli
(petrilli@amber.org).

26 years agoAdded Sherlock source for Python documentation, and added icons to them all.
Jack Jansen [Tue, 26 Jan 1999 13:09:59 +0000 (13:09 +0000)]
Added Sherlock source for Python documentation, and added icons to them all.

26 years agoexpandtabs__doc__: blank line which was not terminated with \n\ caused
Barry Warsaw [Tue, 26 Jan 1999 02:15:50 +0000 (02:15 +0000)]
expandtabs__doc__: blank line which was not terminated with \n\ caused
the SunPro C compiler to choke.  Removed this redundant line.

26 years agoAdd spawnv and spawnve functions for Win32 platforms.
Guido van Rossum [Mon, 25 Jan 1999 23:20:23 +0000 (23:20 +0000)]
Add spawnv and spawnve functions for Win32 platforms.

26 years agoA gift from Fredrik Lundh: fast C implementation of expandtabs().
Guido van Rossum [Mon, 25 Jan 1999 22:36:24 +0000 (22:36 +0000)]
A gift from Fredrik Lundh: fast C implementation of expandtabs().
I've reformatted it, added a few comments, a test for tabsize <= 0,
and used the AS_STRING macro.

26 years agoDocument the default for tabsize in expandtabs().
Guido van Rossum [Mon, 25 Jan 1999 22:31:53 +0000 (22:31 +0000)]
Document the default for tabsize in expandtabs().

26 years agoThe usual.
Guido van Rossum [Mon, 25 Jan 1999 21:57:29 +0000 (21:57 +0000)]
The usual.