An error occurred fetching the project authors.
- 12 Dec, 2000 1 commit
-
-
Guido van Rossum authored
-
- 06 Dec, 2000 2 commits
-
-
Fred Drake authored
getlogin() -- it is not clear that a NULL is always an error.
-
Fred Drake authored
NULL without setting errno; observed on Linux Mandrake 7.2 by an anonymous user. This closes bug #124758.
-
- 24 Oct, 2000 1 commit
-
-
Fred Drake authored
Changes to error messages to increase consistency & clarity. This (mostly) closes SourceForge patch #101839.
-
- 03 Oct, 2000 1 commit
-
-
Thomas Wouters authored
terminals, not the master end (though it does, on most systems.)
-
- 25 Sep, 2000 1 commit
-
-
Guido van Rossum authored
-
- 22 Sep, 2000 3 commits
-
-
Guido van Rossum authored
unnecessary. Sez edg@SF
-
Guido van Rossum authored
was reported twice so far. Someone with access to HP-UX, please test this! (Is '__hppa' or 'hppa' really the correct symbol to test for?)
-
Tim Peters authored
subset of Win32 ShellExecute's functionality. Guido wants this because IDLE's Help -> Docs function currently crashes his machine because of a conflict between his version of Norton AntiVirus (6.10.20) and MS's _popen. Docs for startfile are being mailed to Fred (or just read the docstring -- it tells the whole story). Changed webbrowser.py to use os.startfile instead of os.popen on Windows. Changed IDLE's EditorWindow.py to pass an absolute path for the docs (hardcoding ShellExecute's "directory" arg to "." as used to be done let IDLE work, but made the startfile command exceedingly obscure for other uses -- the MS docs are terrible, of course, & still not sure I understand it). Note that Windows Python must link with shell32.lib now! That's where ShellExecute lives.
-
- 15 Sep, 2000 1 commit
-
-
Tim Peters authored
glob.glob("k:*py") (i.e., a raw drive letter + colon at the start) were using the root of the drive rather than the expected Windows behavior of using the drive's "current directory".
-
- 01 Sep, 2000 3 commits
-
-
Guido van Rossum authored
This should match the situation in the 1.6b1 tree.
-
Tim Peters authored
not ever see!
-
Tim Peters authored
implementation. You don't want to know. I've asked Guido to give this a critical review (we agreed on the approach, but the implementation proved more ... interesting ... than anticipated). This will almost certainly be the highlight of Mark Hammond's day <wink>.
-
- 15 Aug, 2000 2 commits
-
-
Fred Drake authored
Minor updates for BeOS R5. Use of OSError in test.test_fork1 changed to TestSkipped, with corresponding change in BeOS/README (by Fred). This closes SourceForge patch #100978.
-
Mark Hammond authored
The existing win32_error() function now returns the new(ish) WindowsError, ensuring we get correct error messages.
-
- 14 Aug, 2000 1 commit
-
-
Mark Hammond authored
This is an enhancement to a prior patch (100941) ... [T]his patch removes the risk of deadlock waiting for the child previously present in certain cases. It adds tracking of all file handles returned from an os.popen* call and only waits for the child process, returning the exit code, on the closure of the final file handle to that child.
-
- 31 Jul, 2000 1 commit
-
-
Peter Schneider-Kamp authored
marked my*.h as obsolete
-
- 26 Jul, 2000 1 commit
-
-
Fredrik Lundh authored
underlying process has terminated (bug fix from David Bolen)
-
- 24 Jul, 2000 1 commit
-
-
Thomas Wouters authored
for systems that are missing those declarations from system include files. Start by moving a pointy-haired ones from their previous locations to the new section. (The gethostname() one, for instance, breaks on several systems, because some define it as (char *, size_t) and some as (char *, int).) I purposely decided not to include the summary of used #defines like Tim did in the first section of pyport.h. In my opinion, the number of #defines likedly to be used by this section would make such an overview unwieldy. I would suggest documenting the non-obvious ones, though.
-
- 23 Jul, 2000 1 commit
-
-
Fredrik Lundh authored
return the exit code. Only works on Windows NT/2000, due to limitations in the Win9X shell. (based on patch #100941 by David Bolen)
-
- 22 Jul, 2000 2 commits
-
-
Thomas Wouters authored
possible.
-
Thomas Wouters authored
-
- 21 Jul, 2000 1 commit
-
-
Thomas Wouters authored
and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
-
- 19 Jul, 2000 2 commits
-
-
Thomas Wouters authored
-
Skip Montanaro authored
-
- 16 Jul, 2000 1 commit
-
-
Thomas Wouters authored
comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;)
-
- 14 Jul, 2000 1 commit
-
-
Thomas Wouters authored
posix.openpty(). And conveniently also check if CVS write access really works. Closes SF patch #100722
-
- 13 Jul, 2000 1 commit
-
-
Andrew M. Kuchling authored
os.seteuid(), os.setegid(), os.setreuid(), os.setregid().
-
- 12 Jul, 2000 1 commit
-
-
Jeremy Hylton authored
-
- 10 Jul, 2000 2 commits
-
-
Fredrik Lundh authored
-
Fredrik Lundh authored
for #100836, but implemented in a different way)
-
- 09 Jul, 2000 5 commits
-
-
Fredrik Lundh authored
(write, read, ...), based on feedback from GvR. - added tuple-swapping code to popen2.py - fixed some runaway indentation in posixmodule.c
-
Fredrik Lundh authored
windows. - added optional mode argument to popen2/popen3 for unix; if the second argument is an integer, it's assumed to be the buffer size. - changed nt.popen2/popen3/popen4 return values to match the popen2 module (stdout first, not stdin).
-
Fredrik Lundh authored
for the moment, this argument must be left out or set to -1 (only the default bufsize is supported, that is)
-
Fredrik Lundh authored
by Bill Tutt. note: to run this on Windows 95/98, you need to have the w9xpopen.exe helper in the same directory as the python DLL.
-
Fredrik Lundh authored
cast to make sure Py_BuildValue gets the right thing. this change eliminates bogus return codes from successful spawn calls (e.g. 2167387144924954624 instead of 0).
-
- 08 Jul, 2000 1 commit
-
-
Fredrik Lundh authored
staring at the diffs before checking this one in. let me know asap if it breaks things on your platform. -- ANSI-fying (patch #100763 by Peter Schneider-Kamp, minus the indentation changes and minus the changes the broke the windows build)
-
- 06 Jul, 2000 1 commit
-
-
Fred Drake authored
In posixmodule.c:posix_fork, the function PyOS_AfterFork is called for both the parent and the child, despite the docs stating that it should be called in the new (child) process. This causes problems in the parent since the forking thread becomes the main thread according to the signal module. Calling PyOS_AfterFork() only in the child fixes this. Changed for both fork() and forkpty().
-
- 30 Jun, 2000 2 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-