Fred Drake
f2e9e2978e
Oops, better update the date on the .TH line.
1999-08-20 13:30:49 +00:00
Fred Drake
4c9be9dffa
Various updates, mostly to add information to the SEE ALSO and
...
INTERNET RESOURCES sections based on c.l.py comments.
1999-08-20 13:10:20 +00:00
Barry Warsaw
008edbf973
A nit to make Fred proud.
1999-08-19 21:17:08 +00:00
Greg Ward
1016af9fa6
Oops, call 'os.path.join()'!
1999-08-19 20:02:10 +00:00
Fred Drake
7eba1d8bbe
Tell what the result objects are (based on comment from the list).
1999-08-19 17:00:38 +00:00
Guido van Rossum
a8b37ad9ff
Scrit by Marc-Andre Lemburg to generate htmlentitydefs.py.
1999-08-19 16:00:41 +00:00
Guido van Rossum
f8e390b1b5
New version by Mark-Andre Lemburg (generated by a script, parseentities.py).
1999-08-19 15:59:35 +00:00
Fred Drake
9ed56de752
Added item regarding random/whrandom.
1999-08-19 15:37:35 +00:00
Guido van Rossum
b3fc9d148d
Added disclaimer to the sleep() function.
1999-08-19 14:42:54 +00:00
Guido van Rossum
a5456d5042
In floatsleep(), when using select(), ignore EINTR error.
1999-08-19 14:40:27 +00:00
Guido van Rossum
1ebcf6aabb
Patches by Michael Reilly to correctly deal with ftp URLs of the form
...
ftp://user@host//root/path: the double slash in the pathname means to
go to the root directory even if the initial directory isn't the root.
1999-08-18 21:51:10 +00:00
Barry Warsaw
8a07baef80
Bump to version 1.1
1999-08-18 20:18:20 +00:00
Barry Warsaw
772d69676e
__update(): Jeremy Hylton reports occurances of sunaudiodev.error
...
(interrupted system call) when getting the device information. I've
never seen it, but this patch should take care of the problem.
If we get that exception and we're polling, just return since we'll
wake up again soon and get the right information. If we're not
polling, try 4 times and then give up.
1999-08-18 20:17:42 +00:00
Guido van Rossum
959fa01dc3
Typo in comment (on Mac, it's the *resource* fork that's not copied,
...
the data fork *is* copied).
1999-08-18 20:03:17 +00:00
Guido van Rossum
5e006a3cc3
Patches by Michael Reilly to correctly deal with ftp URLs of the form
...
ftp://user@host//root/path: the double slash in the pathname means to
go to the root directory even if the initial directory isn't the root.
1999-08-18 17:40:33 +00:00
Guido van Rossum
6c395ba316
Add Tim Peters' shuffle() algorithm.
1999-08-18 13:53:28 +00:00
Greg Ward
e393ddb2e0
Implements the 'build_ext' command for building C/C++ extension modules.
1999-08-14 23:57:49 +00:00
Greg Ward
b4dbfb318c
Module to spawn sub-commands in a platform-independent way.
...
Initial revision only includes support for POSIX-style fork-and-exec.
1999-08-14 23:57:17 +00:00
Greg Ward
5e71744000
Changed to use 'spawn()', now that it exists.
...
Added 'verbose' and 'dry_run' parameters to constructor.
Changed 'compile()', 'link_*()' to default lists arguments to None
rather than empty list.
Added implementations of the filename-mangling methods mandated by
the CCompiler interface.
1999-08-14 23:53:53 +00:00
Greg Ward
e1aaaa653c
Added 'verbose' and 'dry_run' flags to CCompiler constructor and
...
'new_compiler()' factory function.
Added 'runtime_library_dirs' list (for -R linker option) and methods
to manipulate it.
Deleted some obsolete comments.
Added all the filename manglign methods: 'object_filenames()',
'shared_object_filename()', 'library_filename()',
'shared_library_filename()'.
Added 'spawn()' method (front end to the "real" spawn).
1999-08-14 23:50:50 +00:00
Greg Ward
7f65c65208
Comment tweak.
1999-08-14 23:47:21 +00:00
Greg Ward
0081cc529c
Better detection of bad entries in option table.
...
Better error messages for bad entries in option table.
1999-08-14 23:44:37 +00:00
Greg Ward
8c66b697c1
Added DistutilsExecError, DistutilsValueError.
1999-08-14 23:43:45 +00:00
Barry Warsaw
e27db5a393
Initial implementation
1999-08-13 20:59:48 +00:00
Fred Drake
31e5e37196
Explain the possible range of values for the pid parameter to
...
waitpid().
1999-08-13 13:36:33 +00:00
Barry Warsaw
af5725104b
Initial revision
1999-08-11 21:40:38 +00:00
Guido van Rossum
aa6ed0c341
Moshe noticed an inconsistency in his comment, so I'm rephrasing it to
...
be clearer.
1999-08-11 14:55:43 +00:00
Guido van Rossum
292f2c53da
Patch inspired by Moshe Zadka to search for the Icons directory in the
...
same directory as __file__, rather than searching for it along sys.path.
This works better when idle is a package.
1999-08-11 02:01:00 +00:00
Guido van Rossum
2f7df12f33
Patch by Paul Sokolovsky to support the get() method.
1999-08-11 01:54:05 +00:00
Barry Warsaw
50765abb29
(py-shell): Set the default shell if not set yet. It's sometimes
...
convenient to call py-shell before the first Python file has been
visited.
1999-08-10 21:49:00 +00:00
Greg Ward
abc2f960d4
Allow comment characters (#) to be escaped:
...
- did away with 'comment_re' option -- it's just not that simple anymore
- heavily revised the main logic in 'readline()' to accomodate this
Beefed up 'warn()': 'line' can be list or tuple, and 'msg' is
automatically converted to a string.
1999-08-10 20:09:38 +00:00
Andrew M. Kuchling
916fcc3b18
Added __del__ method to GzipFile class that will flush and close the
...
object, if required.
1999-08-10 13:19:30 +00:00
Fred Drake
68921dfa31
In note mentioning [].remove()'s exception, tell what exception is
...
raised. Prompted by Barry's whining. ;-0
1999-08-09 17:05:12 +00:00
Guido van Rossum
09be409220
Patch by Marc-Andre Lemburg to add a bunch more symbols.
1999-08-09 14:40:40 +00:00
Guido van Rossum
4f1a6187a5
Ofir Reichenberg suggested to apply htonl() to grpaddr in openmcastsock().
...
Also got rid of unnecessary use of eval() and regsub.gsub().
1999-08-07 14:01:05 +00:00
Fred Drake
d3fbdfd007
Add index entries for open():
...
buffer size, I/O
I/O control, buffering
line-buffered I/O
unbuffered I/O
1999-08-05 13:43:08 +00:00
Fred Drake
8c9fc00f8d
Add index entry "I/O control, buffering" for fdopen().
1999-08-05 13:41:31 +00:00
Fred Drake
a94f6762bc
Add index entry "I/O control, buffering" for makefile().
1999-08-05 13:41:04 +00:00
Guido van Rossum
933c91ebcf
Vladimir Marangozov fixes an AIX-specific problem, writing:
...
"""
Following up Robin Dunn's troubles with freeze, here's a patch that
fixes an oddity regarding the import logic of shared modules on AIX.
Symbol resolution of shared modules is now handled properly for the cases
when the python library is linked to a binary with an arbitrary name.
This includes the standard python[version] executable, but also applications
that are embedding the python core (i.e. linked with libpython[version].a,
the latter being static or shared).
"""
1999-08-04 18:00:12 +00:00
Fred Drake
58c5a2a53c
Started documentation on buffer objects & types. Very preliminary.
...
Greg Stein: Please help with this; it's your baby!
1999-08-04 13:13:24 +00:00
Fred Drake
4574f23115
PyBuffer_New(): Raise ValueError if size is negative (the other
...
constructors didn't miss this).
Raise MemoryError if malloc() fails, instead of just
returning NULL.
1999-08-04 13:08:19 +00:00
Jack Jansen
493aa4809b
Added available() method, which checks whether quicktime is installed at all (by
...
testing whether EnterMovies points to an actual routine or is a null pointer).
1999-08-04 12:07:09 +00:00
Guido van Rossum
068bdb181d
Change the directory tree walking example to use clearer variable
...
names, some suggested by Joe Ellsworth.
1999-08-03 21:52:29 +00:00
Guido van Rossum
6a619f44c5
It turns out that modifying the environment strings is not safe.
...
Treat them as read-only, and make a copy as appropriately. This was
first reported by Bill Janssend and later by Craig Rowland and Ron
Sedlmeyer. This fix is mine.
1999-08-03 19:41:10 +00:00
Fred Drake
46ab6dfa89
Re-write in Python for portability. About 30% slower, but who cares?!
1999-08-03 17:54:39 +00:00
Fred Drake
82ebc27357
remap_element_names(): Only used for things that the new conversion
...
engine in latex2esis.py can do, so discard it.
paragraph detection & markup: Handle some of the list-like
environments properly, picking up paragraphs inside
list items. (Only changed a few element-sets used for
recognition.)
fixup_refmodindexes_chunk(): Use the right attribute to determine the
module a <ref*modindex/> element is referring to.
convert(): Don't call remap_element_names(); it was removed.
1999-08-03 15:32:48 +00:00
Fred Drake
2f6ec9ca81
The new conversion engine supports more of the table re-writing than
...
the old one, so use it.
1999-08-03 15:27:37 +00:00
Guido van Rossum
32bc45f737
Removed PyMapping_Clear() -- it was wishful thinking and serves no
...
great purpose.
1999-08-02 20:49:37 +00:00
Fred Drake
83c0983bf6
Use the mksourcepgk script instead of mktarball.sh.
1999-08-02 20:20:14 +00:00
Fred Drake
9ff3a6a6e7
Remove obsolete version of script.
1999-08-02 20:19:42 +00:00