]> granicus.if.org Git - python/log
python
24 years agoAdd Donovan Baarda for fixing a tortuous zlibmodule bug (but aren't they all?)
Andrew M. Kuchling [Wed, 21 Feb 2001 02:19:44 +0000 (02:19 +0000)]
Add Donovan Baarda for fixing a tortuous zlibmodule bug (but aren't they all?)

24 years agoAdd test case from bug #124981: zlib decompress of sync-flushed data
Andrew M. Kuchling [Wed, 21 Feb 2001 02:17:01 +0000 (02:17 +0000)]
Add test case from bug #124981: zlib decompress of sync-flushed data
    fails

24 years agoPatch #103373 from Donovan Baarda: This patch:
Andrew M. Kuchling [Wed, 21 Feb 2001 02:15:56 +0000 (02:15 +0000)]
Patch #103373 from Donovan Baarda: This patch:
  * fixes the zlib decompress sync flush bug as reported in bug #124981
  * avoids repeat calls to (in|de)flateEnd when destroying (de)compression
    objects
  * raises exception when allocating unused_data fails
  * fixes memory leak when allocating unused_data fails
  * raises exception when allocating decompress data fails
  * removes vestigial code from decompress flush now that decompression
    returns all available data
  * tidies code so object compress/decompress/flush routines are consistent

24 years agoPatch #103854: raises an exception if a non-Attr node is passed to
Andrew M. Kuchling [Wed, 21 Feb 2001 01:30:26 +0000 (01:30 +0000)]
Patch #103854: raises an exception if a non-Attr node is passed to
 NamedNodeMap.setNamedItem().  Martin, should I sync the PyXML tree, too,
 or do you want to do it?  (I don't know if you're wrapping the 0.6.4
 release right now.)

24 years agoAdded test for patch #103473: test an unquoted cookie value containing '='
Andrew M. Kuchling [Wed, 21 Feb 2001 01:17:54 +0000 (01:17 +0000)]
Added test for patch #103473: test an unquoted cookie value containing '='

24 years ago(py-execute-region): This one's easy... kill the temporary file's
Barry Warsaw [Tue, 20 Feb 2001 23:07:56 +0000 (23:07 +0000)]
(py-execute-region): This one's easy... kill the temporary file's
buffer after executing its contents.

24 years agoOn OSX passing NULL to NewUniversalFilterProc() does not return NULL but a crashing...
Jack Jansen [Tue, 20 Feb 2001 22:27:43 +0000 (22:27 +0000)]
On OSX passing NULL to NewUniversalFilterProc() does not return NULL but a crashing UPP. This made ModalDialog (and, hence EditPythonPrefs and EasyDialogs and many others) crash. Fixed.

24 years agoPatch #103473 from dougfort: Some sites (amazon.com for one) drop
Andrew M. Kuchling [Tue, 20 Feb 2001 22:11:24 +0000 (22:11 +0000)]
Patch #103473 from dougfort: Some sites (amazon.com for one) drop
cookies that contain '=' as part of the value. This patch modifies
Cookie.py to allow '=' as a legal character, and to make the key
search nongreedy so it stops at the first '='.

24 years agoThe code in PyImport_Import() tried to save itself a bit of work and
Guido van Rossum [Tue, 20 Feb 2001 21:43:24 +0000 (21:43 +0000)]
The code in PyImport_Import() tried to save itself a bit of work and
save the __builtin__ module in a static variable.  But this doesn't
work across Py_Finalise()/Py_Initialize()!  It also doesn't work when
using multiple interpreter states created with PyInterpreterState_New().

So I'm ripping out this small optimization.

This was probably broken since PyImport_Import() was introduced in
1997!  We really need a better test suite for multiple interpreter
states and repeatedly initializing.

This fixes the problems Barry reported in Demo/embed/loop.c.

24 years agoimport.c -> importexc.c
Barry Warsaw [Tue, 20 Feb 2001 20:54:28 +0000 (20:54 +0000)]
import.c -> importexc.c

24 years agoimport -> importexc
Barry Warsaw [Tue, 20 Feb 2001 20:54:09 +0000 (20:54 +0000)]
import -> importexc

24 years agoimport.c -> importexc.c
Barry Warsaw [Tue, 20 Feb 2001 20:53:37 +0000 (20:53 +0000)]
import.c -> importexc.c

Added `realclean' target.

24 years agoRename some constants for easier readability.
Tim Peters [Tue, 20 Feb 2001 20:36:38 +0000 (20:36 +0000)]
Rename some constants for easier readability.

24 years agoMechanical edits just so I can read it.
Tim Peters [Tue, 20 Feb 2001 20:15:19 +0000 (20:15 +0000)]
Mechanical edits just so I can read it.

24 years agoUpdated to use new Python features
Moshe Zadka [Tue, 20 Feb 2001 16:32:24 +0000 (16:32 +0000)]
Updated to use new Python features
Reindented

24 years agoFixed to use new Python features and use more commonly accepted style
Moshe Zadka [Tue, 20 Feb 2001 16:21:35 +0000 (16:21 +0000)]
Fixed to use new Python features and use more commonly accepted style
Reindented

24 years agoChanged to use the fact that str(long) doesn't produce a trailing L
Moshe Zadka [Tue, 20 Feb 2001 16:13:43 +0000 (16:13 +0000)]
Changed to use the fact that str(long) doesn't produce a trailing L
Reindented

24 years agoImprove accuracy. In the .tex file, note the new "% BUG:" comments: an
Tim Peters [Tue, 20 Feb 2001 11:24:35 +0000 (11:24 +0000)]
Improve accuracy.  In the .tex file, note the new "% BUG:" comments:  an
extra backslash is getting displayed in the generated HTML.

24 years agoAdded missing \item. See also bug 133213, about damaged HTML generated
Tim Peters [Tue, 20 Feb 2001 10:57:30 +0000 (10:57 +0000)]
Added missing \item.  See also bug 133213, about damaged HTML generated
for \code(">>>"); don't know how to fix that one.

24 years agoFlesh out PlaySound() docs enough so that SND_ALIAS isn't hopelessly confusing.
Tim Peters [Tue, 20 Feb 2001 10:02:21 +0000 (10:02 +0000)]
Flesh out PlaySound() docs enough so that SND_ALIAS isn't hopelessly confusing.
If someone knows how to turn the new table of guaranteed-registered system
sounds into a LaTeX table, be my guest.

24 years agoSF patch #103749: implicit tuple + default arg
Jeremy Hylton [Mon, 19 Feb 2001 23:53:42 +0000 (23:53 +0000)]
SF patch #103749: implicit tuple + default arg

24 years agoFix for implicit tuple + default arguments, courtesy of Michael Hudson.
Jeremy Hylton [Mon, 19 Feb 2001 23:52:49 +0000 (23:52 +0000)]
Fix for implicit tuple + default arguments, courtesy of Michael Hudson.
SF patch #103749

24 years agoConfigParser.optionxform(): Document this since it is available for
Fred Drake [Mon, 19 Feb 2001 22:37:24 +0000 (22:37 +0000)]
ConfigParser.optionxform():  Document this since it is available for
    sub-classes and application code to override.

24 years agoClean up the "docs".
Tim Peters [Mon, 19 Feb 2001 21:44:53 +0000 (21:44 +0000)]
Clean up the "docs".

24 years agoWrap a bunch of long lines.
Fred Drake [Mon, 19 Feb 2001 21:16:00 +0000 (21:16 +0000)]
Wrap a bunch of long lines.

24 years agoFix a few small typos in the docstrings.
Fred Drake [Mon, 19 Feb 2001 19:30:05 +0000 (19:30 +0000)]
Fix a few small typos in the docstrings.

get_close_matches():  Do not use %-interpolation for strings when
    concatenation is more efficient.

24 years agoMichael Hudson <mwh21@cam.ac.uk>:
Fred Drake [Mon, 19 Feb 2001 19:22:00 +0000 (19:22 +0000)]
Michael Hudson <mwh21@cam.ac.uk>:
New material on defining extension types.  Thanks!

(Small markup adjustments made, but this is mostly as received.)

24 years agoNo longer needed since the main Makefile is "flat".
Fred Drake [Mon, 19 Feb 2001 19:20:17 +0000 (19:20 +0000)]
No longer needed since the main Makefile is "flat".

24 years agoConvert to a "flat" Makefile.
Fred Drake [Mon, 19 Feb 2001 19:19:26 +0000 (19:19 +0000)]
Convert to a "flat" Makefile.

24 years agoAdd an option allowing the user to determine where the output HTML is built.
Fred Drake [Mon, 19 Feb 2001 19:18:09 +0000 (19:18 +0000)]
Add an option allowing the user to determine where the output HTML is built.
Provide a way to set the paper size by name instead of only supporting
separate options for each size.

24 years agoFix markup so this document will format.
Fred Drake [Mon, 19 Feb 2001 19:14:50 +0000 (19:14 +0000)]
Fix markup so this document will format.

24 years agoThis never saw much use, so remove it.
Fred Drake [Mon, 19 Feb 2001 19:11:12 +0000 (19:11 +0000)]
This never saw much use, so remove it.

24 years agoSF Patch # 103839 byt dougfort: Allow ';' in attributes
Guido van Rossum [Mon, 19 Feb 2001 18:39:09 +0000 (18:39 +0000)]
SF Patch # 103839 byt dougfort: Allow ';' in attributes

sgmllib does not recognize HTML attributes containing the semicolon
';' character. This may be in accordance with the HTML spec, but there
are sites that use it (excite.com) and the browsers I regularly use
(IE5, Netscape, Opera) all handle it. Doug Fort Downright Software LLC

24 years agoRevert SF patch #103655
Neil Schemenauer [Mon, 19 Feb 2001 18:18:48 +0000 (18:18 +0000)]
Revert SF patch #103655

24 years agoRevert SF patch #103655. Martin Löwis says:
Neil Schemenauer [Mon, 19 Feb 2001 18:17:33 +0000 (18:17 +0000)]
Revert SF patch #103655.  Martin Löwis says:

-shared does the following things:
- invoke the linker with -G -dy -z text (the latter only if
  -mimpure-text was not given)
- drop crt1.o from the list of objects being linked
- drop -lc from the list of libraries being linked
OTOH, -G is just passed through to the linker.

The things that -shared does are necessary: crt1.o defines _start, and
requires main, so it should not be present in a shared library.
Likewise, -z text should be used to detect position-dependent code at
compile time.

24 years agoMake the top-level index.html depend on the individual document index.html
Fred Drake [Mon, 19 Feb 2001 17:52:07 +0000 (17:52 +0000)]
Make the top-level index.html depend on the individual document index.html
files so that the date is properly updated on the front page.

24 years agoChecked in with Andrew's blessing, I leave the comments with which
Thomas Heller [Mon, 19 Feb 2001 17:48:03 +0000 (17:48 +0000)]
Checked in with Andrew's blessing, I leave the comments with which
this was posted to distutils-sig in.

Here is what I've hacked together over some spare time
at the weekend. I would appreciate feedback, as I've told
before I'm neither a great author, nor native english speaker,
nor anything else.

Mostly I've completed (and written) docs for bdist_wininst
(where I'm an experert for), also I've started some stuff
for the data_files and scripts option.

Should I continue in this way? Would others like to jump in?

24 years agoAdded entries for difflib documentation.
Fred Drake [Mon, 19 Feb 2001 16:32:40 +0000 (16:32 +0000)]
Added entries for difflib documentation.

24 years agoDocumentation for the difflib module, converted from the module docstrings.
Fred Drake [Mon, 19 Feb 2001 16:31:02 +0000 (16:31 +0000)]
Documentation for the difflib module, converted from the module docstrings.

24 years agoAdd simple section for assert, including assert w/ lambdas
Jeremy Hylton [Mon, 19 Feb 2001 15:54:52 +0000 (15:54 +0000)]
Add simple section for assert, including assert w/ lambdas

24 years agoWhen running python -O, do not include blocks defined in asserts in
Jeremy Hylton [Mon, 19 Feb 2001 15:50:51 +0000 (15:50 +0000)]
When running python -O, do not include blocks defined in asserts in
the symbol table pass.  These blocks were already ignored by the code
gen pass.  Both passes must visit the same set of blocks in the same
order.

Fixes SF buf 132820

24 years agoAdd test for syntax error on "x = 1 + 1".
Jeremy Hylton [Mon, 19 Feb 2001 15:35:26 +0000 (15:35 +0000)]
Add test for syntax error on "x = 1 + 1".
Move check_syntax() function into test_support.

24 years agofix long line
Jeremy Hylton [Mon, 19 Feb 2001 15:34:10 +0000 (15:34 +0000)]
fix long line

24 years agoTolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510.
Jeremy Hylton [Mon, 19 Feb 2001 15:33:10 +0000 (15:33 +0000)]
Tolerate ill-formed trees in symtable_assign().  Fixes SF bug 132510.

24 years agoDOMException._get_code():
Fred Drake [Mon, 19 Feb 2001 14:57:02 +0000 (14:57 +0000)]
DOMException._get_code():
    New method; this is the "alternate" access to the exception code.
    (Useful for Python DOM implementations that support the accessor
    method approach to retrieving attribute values.)

24 years agoEnhancements to the bdist_wininst command:
Thomas Heller [Mon, 19 Feb 2001 09:20:30 +0000 (09:20 +0000)]
Enhancements to the bdist_wininst command:
--bitmap command line option allows to use a different bitmap file instead
of the build-in python powered logo.
--title lets you specify the text to display on the background.

The editbox in the first screen now longer is
selected (highlighted), it had the WS_TABSTOP flag.

This is the patch
http://sourceforge.net/patch/?func=detailpatch&patch_id=103687&group_id=5470
with two changes:
1. No messagebox displayed when the compilation to .pyc or .pyo files
failes, this will only confuse the user (and it will fail under certain
cases, where sys.path contains garbage).
2. A debugging print statement was removed from bdist_wininst.py.

24 years agoThis patch makes the default compiler determination more flexible
Marc-André Lemburg [Mon, 19 Feb 2001 09:20:04 +0000 (09:20 +0000)]
This patch makes the default compiler determination more flexible
and also takes the sys.platform name into account. This helps on
platforms where there are multiple possible compiler backends (the
one with which Python itself was compiled is preferred over others
in this case).

The patch uses this new technique to enable using cygwin compiler
per default for cygwin compiled Pythons.

Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.

24 years agoMore typos. libwinsound.tex typo noted by Peter Funk (thanks!).
Tim Peters [Mon, 19 Feb 2001 08:36:41 +0000 (08:36 +0000)]
More typos.  libwinsound.tex typo noted by Peter Funk (thanks!).

24 years agoRepair tab/space screwup.
Tim Peters [Mon, 19 Feb 2001 07:33:23 +0000 (07:33 +0000)]
Repair tab/space screwup.

24 years agoTake a tour of hell's seedier neighborhoods to try to make winsound.Beep()
Tim Peters [Mon, 19 Feb 2001 07:06:36 +0000 (07:06 +0000)]
Take a tour of hell's seedier neighborhoods to try to make winsound.Beep()
do something non-useless on Win9X boxes.  WinME unknown to me.  Someone with
NT/2000 make sure it still works there!

24 years agoThe usual.
Neil Schemenauer [Mon, 19 Feb 2001 04:50:49 +0000 (04:50 +0000)]
The usual.

24 years agoUse -G option for linking shared libraries on Solaris (SF patch #103656).
Neil Schemenauer [Mon, 19 Feb 2001 04:47:42 +0000 (04:47 +0000)]
Use -G option for linking shared libraries on Solaris (SF patch #103656).
Compile shared object files using -fPIC option when using GCC on Solaris (SF
patch #103865).  Closes bug #132783.  Move config.c generated by makesetup to
the Modules directory.

24 years agoFix bug in clean target (closes SF patch 103864 and bug 132879). The clobber
Neil Schemenauer [Mon, 19 Feb 2001 04:35:11 +0000 (04:35 +0000)]
Fix bug in clean target (closes SF patch 103864 and bug 132879).  The clobber
target now removes some configure files (like it did before).

24 years agoreorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it
Fredrik Lundh [Sun, 18 Feb 2001 22:13:49 +0000 (22:13 +0000)]
reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it
less likely that bug #132817 ever appears again)

24 years agorenamed internal functions to avoid name clashes under OpenVMS
Fredrik Lundh [Sun, 18 Feb 2001 22:06:17 +0000 (22:06 +0000)]
renamed internal functions to avoid name clashes under OpenVMS
(fixes bug #132815)

24 years agodetect attempts to repeat anchors (fixes bug #130748)
Fredrik Lundh [Sun, 18 Feb 2001 21:04:48 +0000 (21:04 +0000)]
detect attempts to repeat anchors (fixes bug #130748)

24 years agosre_{parse, compile} no longer define __all__.
Tim Peters [Sun, 18 Feb 2001 14:44:42 +0000 (14:44 +0000)]
sre_{parse, compile} no longer define __all__.

24 years ago- restored 1.5.2 compatibility (sorry, eric)
Fredrik Lundh [Sun, 18 Feb 2001 12:05:16 +0000 (12:05 +0000)]
- restored 1.5.2 compatibility (sorry, eric)
- removed __all__ cruft from internal modules (sorry, skip)
- don't assume ASCII for string escapes (sorry, per)

24 years agostupid typo (for some reason, this only caused problems on OpenVMS).
Fredrik Lundh [Sun, 18 Feb 2001 11:41:49 +0000 (11:41 +0000)]
stupid typo (for some reason, this only caused problems on OpenVMS).

24 years agoFixed misspelling.
Tim Peters [Sun, 18 Feb 2001 08:48:49 +0000 (08:48 +0000)]
Fixed misspelling.

24 years agoBug #132921: None treated differently in cmp() / sort() in 2.1a2.
Tim Peters [Sun, 18 Feb 2001 08:28:33 +0000 (08:28 +0000)]
Bug #132921:  None treated differently in cmp() / sort() in 2.1a2.
Just mentioning that in the NEWS file.

24 years agoMove docstrings out of function table to constants defined near the
Fred Drake [Sun, 18 Feb 2001 05:20:18 +0000 (05:20 +0000)]
Move docstrings out of function table to constants defined near the
function implementations.

24 years agoBug #132313 error message confusing for assignment in lambda.
Tim Peters [Sun, 18 Feb 2001 04:45:10 +0000 (04:45 +0000)]
Bug #132313 error message confusing for assignment in lambda.
They're actually complaining about something more specific, an assignment
in a lambda as an actual argument, so that Python parses the
lambda as if it were a keyword argument.  Like f(lambda x: x[0]=42).
The "lambda x: x[0]" part gets parsed as if it were a keyword, being
bound to 42, and the resulting error msg didn't make much sense.

24 years agoremoved __all__ from several modules
Skip Montanaro [Sun, 18 Feb 2001 03:30:53 +0000 (03:30 +0000)]
removed __all__ from several modules

24 years agoremoved __all__ - should probably rename makedict to _makedict unless it is
Skip Montanaro [Sun, 18 Feb 2001 03:13:08 +0000 (03:13 +0000)]
removed __all__ - should probably rename makedict to _makedict unless it is
to be exported

24 years agoadd module-level constants to __all__
Skip Montanaro [Sun, 18 Feb 2001 03:10:09 +0000 (03:10 +0000)]
add module-level constants to __all__

24 years ago- Removed debug
Jack Jansen [Sat, 17 Feb 2001 23:39:35 +0000 (23:39 +0000)]
- Removed debug
- Make sure splash screens are visible

24 years agoConfigurePython now comes in two flavors: ConfigurePythonClassic and ConfigurePythonC...
Jack Jansen [Sat, 17 Feb 2001 23:31:48 +0000 (23:31 +0000)]
ConfigurePython now comes in two flavors: ConfigurePythonClassic and ConfigurePythonCarbon, which copy the respective interpreters to PythonInterpreter and rebuild all the applets. This allows MacOS9 users to switch back and forth.

24 years agoAllow selecting a template in findtemplate(), so Classic programs can build Carbon...
Jack Jansen [Sat, 17 Feb 2001 23:30:19 +0000 (23:30 +0000)]
Allow selecting a template in findtemplate(), so Classic programs can build Carbon applets and vice-versa.

24 years ago2.1a2 distribution files.
Jack Jansen [Sat, 17 Feb 2001 22:12:43 +0000 (22:12 +0000)]
2.1a2 distribution files.

24 years agoAdded a note that this file is incorrect for 2.1a2.
Jack Jansen [Sat, 17 Feb 2001 22:04:13 +0000 (22:04 +0000)]
Added a note that this file is incorrect for 2.1a2.

24 years ago2.1a2 distribution files.
Jack Jansen [Sat, 17 Feb 2001 22:03:42 +0000 (22:03 +0000)]
2.1a2 distribution files.

24 years agoBug #132850 unix line terminator on windows.
Tim Peters [Sat, 17 Feb 2001 22:02:34 +0000 (22:02 +0000)]
Bug #132850 unix line terminator on windows.
Miserable hack to replace the previous miserable hack in maybe_pyc_file.

24 years agoMore changes to attempt to get the menubar back on exit. Without success:-(
Jack Jansen [Sat, 17 Feb 2001 22:02:07 +0000 (22:02 +0000)]
More changes to attempt to get the menubar back on exit. Without success:-(

24 years agoMade version string shorter for Carbon so it fits on one line.
Jack Jansen [Sat, 17 Feb 2001 22:00:43 +0000 (22:00 +0000)]
Made version string shorter for Carbon so it fits on one line.

24 years agoMore modifications to bring the script output in line with the real thing.
Jack Jansen [Sat, 17 Feb 2001 22:00:18 +0000 (22:00 +0000)]
More modifications to bring the script output in line with the real thing.

24 years agoBug #132816: Compiler warning in PYEXPAT.C for extra ';'
Tim Peters [Sat, 17 Feb 2001 18:12:50 +0000 (18:12 +0000)]
Bug #132816:  Compiler warning in PYEXPAT.C for extra ';'
Removed trailing ";" in instances of "};" closing code blocks.

24 years agoIn the example showing the irrelevance of start columns, restore that the
Tim Peters [Sat, 17 Feb 2001 18:03:25 +0000 (18:03 +0000)]
In the example showing the irrelevance of start columns, restore that the
start columns differ (editing had pushed them all into column 0).

24 years agoAdd entries for the doctest documentation.
Fred Drake [Sat, 17 Feb 2001 17:33:25 +0000 (17:33 +0000)]
Add entries for the doctest documentation.

24 years agoMake a variety of minor markup adjustments.
Fred Drake [Sat, 17 Feb 2001 17:32:41 +0000 (17:32 +0000)]
Make a variety of minor markup adjustments.

Close some environments so that this will actually format.

24 years agoSF patch #103808: doctest.py docs
Tim Peters [Sat, 17 Feb 2001 05:58:44 +0000 (05:58 +0000)]
SF patch #103808: doctest.py docs
Checking in Moshe's patch after rewrapping some paragraphs (to consume
fewer columns) and repairing that I/2.**J lost the I.

24 years agoSet PYTHONPATH when running setup.py in order to override any ambient
Andrew M. Kuchling [Sat, 17 Feb 2001 05:33:50 +0000 (05:33 +0000)]
Set PYTHONPATH when running setup.py in order to override any ambient
    value for it, as suggested in bug #129854.  This prevents an old
    PYTHONPATH confusing setup.py (say, if it results in Python finding
    an old version of the Distutils)

24 years agoChange temp names created by listcomps from [%d] to _[%d], so the one-liner
Tim Peters [Sat, 17 Feb 2001 05:30:26 +0000 (05:30 +0000)]
Change temp names created by listcomps from [%d] to _[%d], so the one-liner
    [k for k in dir() if k[0] != "_"]
can be used to get the non-private names (used to contain "[1]").

24 years agoSplit the rpath argument into multiple paths, turning it into a list.
Andrew M. Kuchling [Sat, 17 Feb 2001 04:48:41 +0000 (04:48 +0000)]
Split the rpath argument into multiple paths, turning it into a list.
    This partially fixes bug #128930.

24 years agoFix typo
Andrew M. Kuchling [Sat, 17 Feb 2001 00:42:56 +0000 (00:42 +0000)]
Fix typo
Makefile.pre.in was added in 1.4

24 years agoFix two typos, and add some omitted \option{} markup
Andrew M. Kuchling [Sat, 17 Feb 2001 00:38:48 +0000 (00:38 +0000)]
Fix two typos, and add some omitted \option{} markup

24 years agoHack to make this still work with Python 1.5.2. ;-(
Fred Drake [Fri, 16 Feb 2001 22:13:48 +0000 (22:13 +0000)]
Hack to make this still work with Python 1.5.2.  ;-(

24 years agoSteven Majewski's instructions for building the toolbox modules for
Jack Jansen [Fri, 16 Feb 2001 21:48:24 +0000 (21:48 +0000)]
Steven Majewski's instructions for building the toolbox modules for
incorporating them in a vanilla Python under MacOSX (i.e. in a
non-MacPython-Python). Not complete and up-to-date right now, but
that'll be fixed shortly.

24 years agoRemove the old version of my_StartElementHandler(). This was conditionally
Fred Drake [Fri, 16 Feb 2001 20:46:26 +0000 (20:46 +0000)]
Remove the old version of my_StartElementHandler().  This was conditionally
compiled only for some versions of Expat, but was no longer needed as the
new implementation works for all versions.  Keeping it created multiple
definitions for Expat 1.2, which caused compilation to fail.

24 years agoRemove trailing comma from 'why_code' enum, which was introduced by the
Thomas Wouters [Fri, 16 Feb 2001 11:52:31 +0000 (11:52 +0000)]
Remove trailing comma from 'why_code' enum, which was introduced by the
continue-inside-try patch. Partly fixes SF bug #132597.

24 years agoRemove outdated information. Merge now dead BeOS/README-readline. I'm not
Neil Schemenauer [Fri, 16 Feb 2001 04:35:20 +0000 (04:35 +0000)]
Remove outdated information.  Merge now dead BeOS/README-readline.  I'm not
sure if that information is still relevant though.

24 years agoAdd more information regarding the altinstall target.
Neil Schemenauer [Fri, 16 Feb 2001 04:18:08 +0000 (04:18 +0000)]
Add more information regarding the altinstall target.

24 years agoRemove confusing explaination about altinstall target and refer to
Neil Schemenauer [Fri, 16 Feb 2001 04:16:34 +0000 (04:16 +0000)]
Remove confusing explaination about altinstall target and refer to
the README file.

24 years agoAdd Include to the list of source directories.
Neil Schemenauer [Fri, 16 Feb 2001 04:11:41 +0000 (04:11 +0000)]
Add Include to the list of source directories.

24 years agoSimplify linking on AIX and BeOS (SF patch #103679).
Neil Schemenauer [Fri, 16 Feb 2001 04:09:05 +0000 (04:09 +0000)]
Simplify linking on AIX and BeOS (SF patch #103679).

24 years agoBuild grammar files in their proper place rather than moving them. This should
Neil Schemenauer [Fri, 16 Feb 2001 03:59:53 +0000 (03:59 +0000)]
Build grammar files in their proper place rather than moving them.  This should
allow building with a read-only source tree (although I haven't tried it).

24 years agoTake output filenames as arguments instead of hard-coding them.
Neil Schemenauer [Fri, 16 Feb 2001 03:57:53 +0000 (03:57 +0000)]
Take output filenames as arguments instead of hard-coding them.

24 years agoThe usual.
Neil Schemenauer [Fri, 16 Feb 2001 03:37:54 +0000 (03:37 +0000)]
The usual.

24 years agoSimplify linking on BeOS. Rename some files. Closes SF patch #103679.
Neil Schemenauer [Fri, 16 Feb 2001 03:36:53 +0000 (03:36 +0000)]
Simplify linking on BeOS.  Rename some files.  Closes SF patch #103679.

24 years agoLinking just got simpiler on AIX and BeOS (closes SF patch #103679).
Neil Schemenauer [Fri, 16 Feb 2001 03:31:13 +0000 (03:31 +0000)]
Linking just got simpiler on AIX and BeOS (closes SF patch #103679).