Just van Rossum
460ff20cd6
String values will now always be shown with quotes, so one can see the difference between the value 2 and the value '2'. -- jvr
1999-10-30 11:43:25 +00:00
Fred Drake
5bd608d46e
Change the suggestions pointer at the bottom of generated HTML pages.
1999-10-29 20:51:43 +00:00
Fred Drake
c6d45afb1b
Straighten out dependencies so changes in the texinputs/* get reflected.
1999-10-29 20:49:23 +00:00
Fred Drake
6cf186b867
pathes --> paths; typo reported by Gerry Wiener <gerry@ucar.edu>.
1999-10-29 17:51:29 +00:00
Fred Drake
5a3194688d
Added dependency on filecmp section, removed dependencies on cmp and
...
cmpcache sections.
1999-10-29 17:27:08 +00:00
Fred Drake
47a27b6640
Make references to new filecmp module hyperlinks now that there's
...
documentation.
1999-10-29 17:25:59 +00:00
Fred Drake
adf2dbfced
Added section for filecmp.
1999-10-29 17:24:12 +00:00
Fred Drake
c7b5b3c998
filecmp documentation from Moshe Zadka <moshez@math.huji.ac.il>.
1999-10-29 17:23:15 +00:00
Fred Drake
7eaf6828cb
Added deprecation notes, in case anyone decides to read these anyway.
1999-10-26 16:31:51 +00:00
Fred Drake
143db4b041
cmp and cmpcache are now obsolete, so don't include their
...
documentation sections.
1999-10-26 16:28:04 +00:00
Fred Drake
a8052a3113
Added cmp and cmpcache to the "Obsolete" section.
1999-10-26 16:27:28 +00:00
Guido van Rossum
2d72687006
New module by Moshe Zadka (submitted on Sept. 25). This unifies the
...
functionality of cmp.py and cmpcache.py, which are hereby declared
obsolescent.
1999-10-26 14:02:01 +00:00
Guido van Rossum
4e20de59dd
Patch by Michael Hudson: when the object of attribute expansion is a
...
class instance, include the class attributes in the list of possible
expansions.
1999-10-26 13:09:08 +00:00
Guido van Rossum
d65b53923e
Fix by Moshe Zadka (cleaned up and documented by GvR) to break out the
...
request handling into separate parse_request() and handle_request()
methods.
1999-10-26 13:01:36 +00:00
Jack Jansen
32a15adeab
MrC also needs BAD_STATIC_FORWARD define.
1999-10-26 09:25:32 +00:00
Guido van Rossum
25da5bebd8
Fix PR117. The error message is "keywords must be strings". Perhaps
...
not as descriptive as what Barry suggests, but this also catches the
(in my opinion important) case where some other C code besides apply()
constructs a kwdict that doesn't have the right format. All the other
possibilities of getting it wrong (non-dict, wrong keywords etc) are
already caught so this makes sense to check here.
1999-10-26 00:12:20 +00:00
Greg Ward
e1ada50559
Don't assume GNU tar -- generate tar file and compress in separate steps.
...
Now supports the full range of intended formats (tar, ztar, gztar, zip).
"-f" no longer a short option for "--formats" -- conflicts with new
global option "--force"!
1999-10-23 19:25:05 +00:00
Greg Ward
d6c30f66c7
Removed massive comment speculating about needlessly complex variations
...
on the manifest file syntax.
1999-10-23 19:10:59 +00:00
Greg Ward
346e320c6e
Qualified use of 'newer_group' function.
1999-10-23 19:06:56 +00:00
Greg Ward
6bad86462b
Fix how we run 'zip' -- give explicit .zip extension.
1999-10-23 19:06:20 +00:00
Fred Drake
714fd26a2f
Documented Beep() function.
1999-10-22 21:08:56 +00:00
Guido van Rossum
bda10c81d0
In helo() and ehlo(), Don't fail when gethostbyaddr() fails -- just
...
keep whatever gethostname() returns. After a suggestion by Doug Wyatt.
1999-10-22 13:09:20 +00:00
Fred Drake
d6512808f0
Module/script to parse the reference count data file and make the
...
information accessible to Python.
When run as a script, just dumps the information back out in the data
format, with functions in sorted order and a blank line between
different functions.
Still need to apply the information somehow.
1999-10-20 21:50:31 +00:00
Fred Drake
805bf1b330
Added note that Skip created the initial version of this file.
...
Fixed up a few of his ??? comments.
1999-10-20 16:03:38 +00:00
Fred Drake
7b7dc6b49d
Initial version as provided by Skip Montanaro <skip@mojam.com>.
1999-10-20 15:06:24 +00:00
Guido van Rossum
8fa42af978
Fix PR#107: wm_colormapwindows() did the wrong thing when presented
...
more than one window argument.
1999-10-20 12:29:56 +00:00
Guido van Rossum
910d9a0634
Test output.
...
(XXX perhaps a bit too verbose; in particular it is sensitive to
all the doc strings.)
1999-10-19 19:09:00 +00:00
Guido van Rossum
fdecda0123
Rewritten -- this now tests the binascii *except* for the binhex
...
module, which is tested by test_binhex.py.
1999-10-19 19:08:13 +00:00
Guido van Rossum
a0e85b241d
Test output for test_binhex.py.
1999-10-19 19:07:33 +00:00
Guido van Rossum
2db4f47fdd
Patch by Jason Trowbridge. (Followup to his PR#110.) (Slightly
...
reformatted.)
- Illegal padding is now ignored. (Recommendation by GvR.)
- Padding no longer removes characters from data string (resulting in
lost data/strings with negative lengths).
- Illegal characters outside the ASCII range are now ignored, instead
of possibly being remapped to a valid character.
1999-10-19 19:05:14 +00:00
Guido van Rossum
7b8f1abfca
This test really only tests the binhex module.
...
Renamed it and adapted a comment and an error message.
1999-10-19 17:48:54 +00:00
Guido van Rossum
d5753e15e2
John DuBois tells us that SCO OpenServer 5.0 and later requires _SVID3
...
before it reveals the needed definitions in sys/statvfs.h.
1999-10-19 13:29:23 +00:00
Guido van Rossum
eba24bb920
Fix PR#110 -- bad input ("====") for a2b_base64() caused it to call
...
_PyString_Resize() with a negative size.
1999-10-19 04:47:13 +00:00
Jeremy Hylton
88d23309e9
print a warning if the password will be echoed.
...
At import time, getpass will be bound to the appropriate
platform-specific function. If the platform's echo-disabler is not
available, default_getpass, which prints the warning, will be used
1999-10-18 22:25:22 +00:00
Guido van Rossum
f8d8e07601
Fixed PR#106: winfo_visualsavailable() with the includeids=1 option
...
didn't properly handle the hex numbers returned.
1999-10-18 22:06:38 +00:00
Guido van Rossum
dcb8583c18
Fix for PR#111: when using the inplace option, give the new file the
...
same permissions as the old file, plugging a security hole.
(Not using exactly the suggested bugfix.)
1999-10-18 21:41:43 +00:00
Fred Drake
39d4a0237a
Fixed typo in explanation of abspath(); noticed by Paul Prescod
...
<paul@prescod.net>.
1999-10-18 14:10:06 +00:00
Fred Drake
14bb71d553
os.fork raises AttributeError, not NameError, if fork() isn't
...
supported. Pointed out by Moshe Zadka <moshez@math.huji.ac.il>.
1999-10-18 13:43:44 +00:00
Fred Drake
40e84db0f4
Based on comments from Paul Prescod:
...
If os.fork() doesn't exist, raise SystemError with an explanation at
the top of the module. Added a note to the module docstring.
1999-10-16 02:07:50 +00:00
Barry Warsaw
226ae6ca12
Mainlining the string_methods branch. See branch revision log
...
messages for specific changes.
1999-10-12 19:54:53 +00:00
Jeremy Hylton
75260275fe
update to use threading module instead of thread.
1999-10-12 16:20:13 +00:00
Barry Warsaw
2539451fb9
fixed a typo in a docstring, and slightly expanded the module
...
docstring info for readfp().
1999-10-12 16:12:48 +00:00
Guido van Rossum
2c7b8fe618
Fix PR#66. Solution: add error checking around l_divmod() calls in
...
long_pow().
1999-10-11 22:34:41 +00:00
Guido van Rossum
1b7aec35c4
Fix PR#31 -- zfill() mishandles empty string.
1999-10-11 22:15:41 +00:00
Guido van Rossum
42636dc64d
Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname
...
object is DECREFed too early.
1999-10-11 14:03:12 +00:00
Guido van Rossum
08a92cb568
Jeremy writes:
...
I found the following patch helpful in tracking down a bug in some
code. I had appended time, the module, instead of time.time(). Not
sure if it is generally true that printing the repr of the object is
good, but I expect that most unpicklable things will have fairly
information and concise reprs (like files or sockets or modules).
1999-10-10 21:14:25 +00:00
Barry Warsaw
c4eb6a6afd
main(): Arg! I wasn't properly ignoring EINVAL; now only re-raise the
...
exception if code <> errno.EINVAL. Jeremy this should fix your
problem.
1999-10-07 20:00:01 +00:00
Guido van Rossum
d8957d6802
Fix PR#3, submitted by Skip Montanaro: if no space appears after the
...
colon, the first character of the value is lost.
1999-10-06 15:19:19 +00:00
Guido van Rossum
be2033697f
In PySys_GetObject(), it's possible that tstate->interp->sysdict is
...
NULL. In that case, return NULL rather than dumping core.
This fixes PR#91, submitted by Lele Gaifax.
1999-10-05 22:17:41 +00:00
Guido van Rossum
caf2f8e3c7
Add -v flag. Comment duplicate Py_Finalize().
1999-10-05 22:16:07 +00:00