Neal Norwitz
34172d5316
SF #515020 , delete global variables which are used only for temporary
...
values in for loops (dircase, prefix, sitedir).
2002-02-11 18:34:41 +00:00
Neal Norwitz
83bd70a7fa
SF #515005 , change "1 + ''" (which pychecker warns about being invalid)
...
into "raise Exception".
2002-02-11 18:26:02 +00:00
Neal Norwitz
f7fdedc320
SF #515022 remove unused variable
2002-02-11 18:18:29 +00:00
Neal Norwitz
aa38aa5435
SF #515009 , delete global variable that was apparently used only
...
in a for loop.
2002-02-11 18:14:22 +00:00
Neal Norwitz
d5ba4aeab0
SF #515018 , delete global variable that was apparently used only
...
in a list comprehension.
2002-02-11 18:12:06 +00:00
Neal Norwitz
f963b45dfd
SF #515026 , delete global variable that was apparently used only
...
in a for loop.
2002-02-11 18:11:09 +00:00
Neal Norwitz
bc9bc187aa
SF #515024 remove unused variable
2002-02-11 18:06:21 +00:00
Neal Norwitz
f151625b59
SF #515021 , print the refused list to the DEBUGSTREAM, so the parameter is used
...
Note: There is a TBD (aka FIXME) for how best to handle the refused addresses
2002-02-11 18:05:05 +00:00
Neal Norwitz
4212ea4d7a
SF #515012 , cleanup: remove unused variable
2002-02-11 18:01:32 +00:00
Neal Norwitz
22c5d77d47
SF #515011 , cleanup: remove "or 0" condition
2002-02-11 17:59:51 +00:00
Neal Norwitz
7fd41ccdb1
SF #515006 , remove unnecessary import
2002-02-11 17:57:55 +00:00
Neal Norwitz
086ac007a3
SF #515004 cleanup
...
- remove unnecessary imports
- rename dum -> dummy
2002-02-11 17:56:27 +00:00
Neal Norwitz
9fb289d826
SF #515000 , print result of f.tell() in test() instead of ignoring
2002-02-11 17:52:18 +00:00
Marc-André Lemburg
a0af63b242
Corrected import behaviour for codecs which live outside the encodings
...
package.
2002-02-11 17:43:46 +00:00
Andrew M. Kuchling
f2f219daa2
Regenerate configure script
2002-02-11 16:31:10 +00:00
Andrew M. Kuchling
54a3941c67
Bump version number to 2.3
2002-02-11 16:30:54 +00:00
Jack Jansen
58e7a68dea
Removed a spurious }. (How did it get there in the first place??)
2002-02-11 16:21:00 +00:00
Just van Rossum
005dbb219e
on MacOSX/Darwin, use ranlib when building static libs.
2002-02-11 15:31:50 +00:00
Steven M. Gava
e28ee754b0
improvement to keybinding re-use check
2002-02-11 03:45:22 +00:00
Steven M. Gava
9f25e67dd7
base GetHighlight on GetThemeDict for better defaults
2002-02-11 02:51:18 +00:00
Steven M. Gava
46fa7bf86c
further work on config saving
2002-02-11 02:28:19 +00:00
Steven M. Gava
052937f0b5
further work on config saving
2002-02-11 02:20:53 +00:00
Guido van Rossum
ff34626a7e
Remove stub for unicode.txt. Resort README in dictionary order.
2002-02-11 01:18:25 +00:00
Marc-André Lemburg
37aa580742
News about the new alias support.
2002-02-10 21:42:47 +00:00
Marc-André Lemburg
462004e90a
Add IANA character set aliases to the encodings alias dictionary
...
and make alias lookup lazy.
Note that only those IANA character set aliases were added for which
we actually have codecs in the encodings package.
2002-02-10 21:36:20 +00:00
Marc-André Lemburg
e92e0a944e
Add news about PYC magic and changes to UTF-8 codec.
2002-02-09 11:28:43 +00:00
Barry Warsaw
56ab9214c9
Added a module docstring, which doubles as the --help text.
...
Added a bunch of command line options to make the script more
generic.
2002-02-08 23:25:46 +00:00
Guido van Rossum
59b0b60d36
Updates related to Modules/Setup and setup.py. This addresses SF bug
...
#512871 (Jon Ribbens): Installation instructions are wrong.
Bugfix candidate.
2002-02-08 22:22:35 +00:00
Fred Drake
4a02f9542f
Added regression test for start()/stop() returning bogus NULL.
2002-02-08 21:29:22 +00:00
Fred Drake
2c146bfa28
start() and stop() methods: return None where there is no exception;
...
returning NULL causes the interpreter to raise a SystemError.
Noted by Anthony Baxter at Python 10.
2002-02-08 21:27:50 +00:00
Guido van Rossum
fa2e4c27d2
Declare real and imag as read-only attributes.
...
This fixes SF bug #514858 (Gregory Smith): complex not entirely
immutable
2.2.1 Bugfix candidate!
2002-02-08 21:26:07 +00:00
Guido van Rossum
5ff8cb4f1b
Whitespace cleanup.
2002-02-08 20:41:34 +00:00
Neal Norwitz
af64263afc
Fix typo
2002-02-08 20:13:53 +00:00
Fred Drake
63cd9bf488
Python 10 was a success, commemorate it\!
2002-02-08 20:13:47 +00:00
Guido van Rossum
65f50156cd
www.google.com is better than google.com.
2002-02-08 16:20:07 +00:00
Thomas Heller
745b4609cb
Make it 1.5.2 compatible again.
2002-02-08 14:41:31 +00:00
Marc-André Lemburg
bd3be8f0ca
Fix to the UTF-8 encoder: it failed on 0-length input strings.
...
Fix for the UTF-8 decoder: it will now accept isolated surrogates
(previously it raised an exception which causes round-trips to
fail).
Added new tests for UTF-8 round-trip safety (we rely on UTF-8 for
marshalling Unicode objects, so we better make sure it works for
all Unicode code points, including isolated surrogates).
Bumped the PYC magic in a non-standard way -- please review. This
was needed because the old PYC format used illegal UTF-8 sequences
for isolated high surrogates which now raise an exception.
2002-02-07 11:33:49 +00:00
Marc-André Lemburg
9273ec726c
Forgot to add the new emxccompiler.py from Andrew I. MacIntyre's
...
distutils patch for OS/2.
Here it is...
2002-02-06 18:22:48 +00:00
Marc-André Lemburg
dc724d6e35
Cosmetics.
2002-02-06 18:20:19 +00:00
Marc-André Lemburg
e7c6ee4b8a
Whitespace fixes.
2002-02-06 18:18:03 +00:00
Marc-André Lemburg
3688a882d3
Fix for the UTF-8 memory allocation bug and the UTF-8 encoding
...
bug related to lone high surrogates.
2002-02-06 18:09:02 +00:00
Jack Jansen
6a60915843
Don't blacklist ModalFilterUPP but always pass it as NULL. This enables the record routines to be generated.
2002-02-05 22:35:36 +00:00
Jack Jansen
e62ceac7d4
Added SndRecord and (classic only) SndRecordToFile.
2002-02-05 22:34:35 +00:00
Jack Jansen
5bb8f78d97
Added support for unicode strings (utxt).
2002-02-05 21:24:47 +00:00
Steven M. Gava
085eb1b372
further work on config system and config saving
2002-02-05 04:52:32 +00:00
Fred Drake
c121745fda
Update the instructions on reporting bugs to reflect that anonymous reports
...
are no longer accepted.
2002-02-04 21:43:08 +00:00
Fred Drake
baf43c5036
When linking to an index page, explicitly name index.html instead of
...
using "./". The later does not work nicely when browsing docs on a local
disk (as in the installed docs on Windows).
2002-02-04 21:15:42 +00:00
Fred Drake
210d3cca86
Update version number to match Include/patchlevel.h.
...
Make sure we clean up all the temp files craeted for the typeset formats.
2002-02-04 19:49:29 +00:00
Fred Drake
375bbc306e
Update version number to match Include/patchlevel.h.
2002-02-04 19:48:25 +00:00
Just van Rossum
4014401c6c
Added minimal support for floating windows.
2002-02-04 12:52:44 +00:00