Thomas Heller
36343f63fe
Correct typo: the option is 'formats' not 'format'.
2002-11-15 19:20:56 +00:00
Tim Peters
a1d004af04
Style guide reformats. I saw this test fail on a very heavily loaded
...
Win98SE box, but whatever the cause, it had scrolled off the DOS box.
(There was just the "test_queue failed" summary at the end of the
regrtest run.)
2002-11-15 19:08:50 +00:00
Fred Drake
49b33fa4cb
Squash an enormous number of warnings reported when adding "use
...
warnings;" to this, and keep the "use" statement this time.
Fix an obscure bug that caused weird index entries to be generated in
a few cases, and a minor problem with horizontal alignmetn of the last
column of 5-column tables.
[I'd report a SF bug #, but I can't get to that right now.]
2002-11-15 19:04:10 +00:00
Fred Drake
c734b01759
Fix critical markup errors.
2002-11-15 18:49:57 +00:00
Tim Peters
6c629957fd
Repaired typos in the Tcl/Tk compilation instructions. Turns out they
...
work on Win98SE too (yay!).
2002-11-15 18:36:11 +00:00
Fred Drake
3a2cda876b
Minor revisions to clarify the status of xreadlines(), change the way
...
iteration support was documented; the docs for __iter__() were just
confusing.
2002-11-15 16:38:06 +00:00
Andrew M. Kuchling
e0373f8179
Fix minor nits
...
Trim excess whitespace off one line
2002-11-15 14:42:34 +00:00
Andrew M. Kuchling
88eed70fc8
Mention that the MRO algorithm changes in 2.3
2002-11-15 14:37:46 +00:00
Andrew M. Kuchling
b60ea3f01f
Mention change in MRO
2002-11-15 14:37:10 +00:00
Guido van Rossum
545c250970
Add Optik news.
2002-11-15 13:19:58 +00:00
Raymond Hettinger
903bf90723
SF patch #520382 : Expand shelve.py to have a full dictionary interface
...
and add a mixin to UserDict.py to make it easier to implement a full
dictionary interface.
2002-11-15 08:39:40 +00:00
Martin v. Löwis
9cea5f5ee8
Explain what to do in case of missing shared libraries. Remove mentioning
...
of egcs. Fixes #635929 . Backported to 2.2.3.
2002-11-15 07:28:05 +00:00
Raymond Hettinger
7994716b6b
SF patch #520382 : Expand shelve.py to have a full dictionary interface
...
and add a mixin to UserDict.py to make it easier to implement a full
dictionary interface.
2002-11-15 06:46:14 +00:00
Andrew M. Kuchling
3a7f405f5b
Draft a section on modifying Python's path. I'm not sure where
...
this section fits best in inst.tex's organization; Fred or someone, feel
free to move it.
2002-11-15 02:52:44 +00:00
Jack Jansen
26e6be3572
First stab at a Makefile that will create a MacPython that uses the
...
Apple-installed Python 2.2 from /usr/bin as it's underlying engine.
All the MacPython stuff is installed into /Applications/MacPython-OSX,
and .pth files and other magic are used to tie everything together.
So far only the raw windowing interpreter and BuildApplet work.
2002-11-15 00:13:33 +00:00
Jack Jansen
4ea1f455d7
Go from filename to FSSpec via FSRefs, to work around outdated macfs module
...
in python 2.2.
2002-11-15 00:08:29 +00:00
Jack Jansen
d892d4e1c0
Make the Resources directory if needed.
2002-11-15 00:07:31 +00:00
Jack Jansen
180ceedc09
Python 2.2 as installed by Apple has a version of _Res that is too old. We
...
attempt to load an override version in this case.
2002-11-15 00:06:52 +00:00
Jack Jansen
25e61d9e0a
Added a hack so we can build applets with a MacPython that uses the
...
OSX 10.2 apple-supplied Python as its base: if we've copied a symlink
as the executable we remove it and install appletrunner in stead.
2002-11-15 00:05:47 +00:00
Jack Jansen
b54a6ce154
A script to run applets. Originally by Just, slightly modified by me.
2002-11-15 00:04:09 +00:00
Andrew M. Kuchling
24d5a5281a
Add section on Optik
2002-11-14 23:40:42 +00:00
Tim Peters
857fb4c136
Windows blurb about new Tcl/Tk release shipped on Windows.
2002-11-14 23:31:58 +00:00
Tim Peters
077736b96b
Windows changes to move from Tcl/Tk 8.3.2 to 8.4.1. I tested this by
...
running IDLE, and since I'm not a Tcl Guy I'm not sure what else to do.
Up to you! See XXX comments in PCbuild\readme.txt for cautions.
Also repaired typos in the new bz2-for-Windows instructions.
2002-11-14 23:24:40 +00:00
Tim Peters
9a6b8d8cf8
Repaired illegal syntax most compilers probably let slide (but MSVC
...
treats as a fatal error).
2002-11-14 23:22:33 +00:00
Andrew M. Kuchling
366c10c5c0
Finish up the logging section
2002-11-14 23:07:57 +00:00
Guido van Rossum
b9ba45894a
Checking in Greg Ward's Optik, as optparse.py. This is the most
...
recent version from Greg's CVS. I've changed the module docstring,
added a copyright notice, and renamed OptikError to OptParseError.
Still to do are documentation and unit tests.
2002-11-14 22:00:19 +00:00
Guido van Rossum
9a81892100
Fix or disable some tests that were affected by the new C3 MRO
...
algorithm, and add some new tests for the C3 algorithm.
2002-11-14 19:50:14 +00:00
Guido van Rossum
1f1213120e
Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch
...
619475; also closing SF bug 618704). I tweaked his code a bit for
style.
This raises TypeError for MRO order disagreements, which is an
improvement (previously these went undetected) but also a degradation:
what if the order disagreement doesn't affect any method lookups?
I don't think I care.
2002-11-14 19:49:16 +00:00
Thomas Heller
c7aaf953fa
Enhancement for ModuleFinder, it can now handle _xmlplus aka PyXML.
...
Fixes SF # 637835.
2002-11-14 18:45:11 +00:00
Tim Peters
c293704e93
This uses only one temp file at a time, so use test_support.TESTFN as
...
the name instead of enduring nanny "security warnings" from
tempfile.mktemp().
2002-11-14 16:23:29 +00:00
Andrew M. Kuchling
28f2f88c31
Add partial section on the logging package; not finished yet.
2002-11-14 14:14:16 +00:00
Guido van Rossum
3165786dd1
From SF patch 638299 [by Vinaj]: fileConfig() now takes an optional
...
defaults dictionary parameter which is passed to ConfigParser.
2002-11-14 12:52:17 +00:00
Neal Norwitz
de1d51fc12
Fix SF # 638126, logging module not installed
2002-11-14 04:56:09 +00:00
Skip Montanaro
4ebe2e3914
add liblogging
2002-11-14 03:58:20 +00:00
Skip Montanaro
649698f72e
initial rough cut at documentation of logging module. This is basically
...
just a conversion of pydoc.help(logging).
2002-11-14 03:57:19 +00:00
Neal Norwitz
a4864a2464
Update the docstring to match the code. Will backport.
2002-11-14 03:31:32 +00:00
Neal Norwitz
ac30eadc0d
Sync tixwidgets from Mike Clarkson, a maintainer
2002-11-14 02:44:08 +00:00
Neal Norwitz
f539bdeb9c
Sync Tix from Mike Clarkson, a maintainer
2002-11-14 02:43:40 +00:00
Andrew M. Kuchling
a6483d2e9a
Remove 'created by' lines; people can use CVS for this, and the information is often out of date
2002-11-14 02:25:42 +00:00
Neal Norwitz
ef67956139
Fix typo in comment
2002-11-14 02:19:44 +00:00
Andrew M. Kuchling
f6756e8dd4
Fix docstring typo; remove 'created' line
2002-11-14 01:58:48 +00:00
Andrew M. Kuchling
1cace1a30a
[Bug #550364 ] Use sysconfig.get_python_version()
2002-11-14 01:44:35 +00:00
Andrew M. Kuchling
0ff98b9346
[Bug #550364 ] Add get_python_version()
2002-11-14 01:43:00 +00:00
Andrew M. Kuchling
9a38dcf057
[Bug #599248 ] ext module generation problem
...
If you have source files srcdir1/foo.c and srcdir2/foo.c, the
temporary .o for both files is written to build/temp.<platform>/foo.o.
This patch sets strip_dir to false for both calls to object_filename,
so now the object files are written to temp.<platform>/srcdir1/foo.o
and .../srcdir2/foo.o.
2.2 bugfix candidate
2002-11-14 01:29:00 +00:00
Eric S. Raymond
b2db587b11
Make nntplib aware of ~/.netrc credentials; now they get used if they are
...
present and the caller has not specified a name/password pair. This change
makes it less likely that a lazy coder will expose sensitive information in a
word-readable script.
Also, make the test a bit smarter. If NNTPSERVER is defined in the environment
it will go talk to that server rather than look for a possibly nonexistent
local one named 'news'. Maybe the osession initializer ought to look at
NNTPSERVER rather than requiring a host arg? Must look around and see how
universal this convention is first.
2002-11-13 23:05:35 +00:00
Jeremy Hylton
4c8be8510b
Add some simple tests of the persistence hooks.
2002-11-13 22:10:47 +00:00
Jeremy Hylton
5e0f4e73a9
Remove inst_persistent_id() WANNI (we ain't never needed it).
...
Add some simple tests of the persistence hooks.
2002-11-13 22:01:27 +00:00
Jeremy Hylton
0e1183ddff
remove debugging print
2002-11-13 22:00:02 +00:00
Guido van Rossum
affa6b7bf1
Tim wins a bet. Don't use re.
2002-11-13 21:04:31 +00:00
Andrew M. Kuchling
3f1c9a916f
Allow unknown keyword arguments to the Extension class, and warn about them.
2002-11-13 20:54:21 +00:00