- 17 Mar, 1999 7 commits
-
-
Jack Jansen authored
-
Guido van Rossum authored
netloc from the base url as the default netloc for the resulting url even if the schemes differ. Once upon a time, when the web was wild, this was a valuable hack because some people had a URL referencing an ftp server colocated with an http server without having the host in the ftp URL (so they could replicate it or change the hostname easily). More recently, after the file: scheme got added back to the list of schemes that accept a netloc, it turns out that this caused weirdness when joining an http: URL with a file: URL -- the resulting file: URL would always inherit the host from the http: URL because the file: scheme supports a netloc but in practice never has one. There are two reasons to get rid of the old, once-valuable hack, instead of removing the file: scheme from the uses_netloc list. One, the RFC says that file: uses the netloc syntax, and does not endorse the old hack. Two, neither netscape 4.5 nor IE 4.0 support the old hack.
-
Fred Drake authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Guido van Rossum authored
-
Fred Drake authored
-
- 16 Mar, 1999 8 commits
-
-
Guido van Rossum authored
An attempt to execute grid_slaves with arguments (0,0) results in *all* of the slaves being returned, not just the slave associated with row 0, column 0. This is because the test for arguments in the method does not test to see if row (and column) does not equal None, but rather just whether is evaluates to non-false. A value of 0 fails this test.
-
Fred Drake authored
not familiar with Unix terminology.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
\input the module template.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
hyperbolic cosine. Problem report via David Ascher by one of his students.
-
- 15 Mar, 1999 7 commits
-
-
Guido van Rossum authored
doesn't exist and doesn't make sense).
-
Guido van Rossum authored
converntion for gethostbyname_r() etc. than Solaris!
-
Guido van Rossum authored
""" Spec says that on success pthread_create returns 0. It does not say that an error code will be < 0. Linux glibc2 pthread_create() returns ENOMEM (12) when one exceed process limits. (It looks like it should return EAGAIN, but that's another story.) For reference, see: http://www.opengroup.org/onlinepubs/7908799/xsh/pthread_create.html """ [I have a feeling that similar bugs were fixed before; perhaps someone could check that all error checks no check for != 0?]
-
Guido van Rossum authored
the ob_itself pointer. This allows (when using the mixin) different Python objects pointing to the same C object and behaving well as dictionary keys. Or so sez Jack Jansen...
-
Guido van Rossum authored
Don't convert URLs to URLs using pathname2url.
-
Fred Drake authored
-
Fred Drake authored
-
- 13 Mar, 1999 1 commit
-
-
Jack Jansen authored
Python object. This needs a new bgenObjectDefinition.py, which implements compare and hash functions.
-
- 12 Mar, 1999 13 commits
-
-
Guido van Rossum authored
The module cmd requires for each do_xxx command a help_xxx function. I think this is a little old fashioned. Here is a patch: use the docstring as help if no help_xxx function can be found. [I'm tempted to rip out all the help_* functions from pdb, but I'll resist it. Any takers? --Guido]
-
Guido van Rossum authored
Under Windows, python freeze.py -o hello hello.py creates all the correct files in the hello subdirectory, but the Makefile has the directory prefix in it for frozen_extensions.c nmake fails because it tries to locate hello/frozen_extensions.c (His fix adds a call to os.path.basename() in the appropriate place.)
-
Fred Drake authored
-
Guido van Rossum authored
represented by an explicit structure. (There are still too many casts in the code, but that may be unavoidable.) Also added code so that with -vv it is very chatty about what it does.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
-
Fred Drake authored
<dwr2@ix.netcom.com>.
-
Fred Drake authored
file HTML files on Windows machines do to case insensitivity.
-
Fred Drake authored
-
Guido van Rossum authored
The filename to URL conversion didn't properly quote special characters. The URL to filename didn't properly unquote special chatacters.
-
Guido van Rossum authored
so here's his patch again. This time it works (at least on Solaris, Linux and Irix).
-
- 11 Mar, 1999 4 commits
-
-
Guido van Rossum authored
-
Fred Drake authored
creating the <moduleinfo>.
-
Guido van Rossum authored
-
Guido van Rossum authored
pyclbr.Class object; this can happen when the superclass is unrecognizable (to pyclbr), e.g. when module renaming is used. - Show a watch cursor when calling pyclbr (since it may take a while recursively parsing imported modules!).
-