- 05 Sep, 2001 21 commits
-
-
Martin v. Löwis authored
-
Guido van Rossum authored
I believe this works on Linux (tested both on a system with large file support and one without it), and it may work on Solaris 2.7. The changes are twofold: (1) The configure script now boldly tries to set the two symbols that are recommended (for Solaris and Linux), and then tries a test script that does some simple seeking without writing. (2) The _portable_{fseek,ftell} functions are a little more systematic in how they try the different large file support options: first try fseeko/ftello, but only if off_t is large; then try fseek64/ftell64; then try hacking with fgetpos/fsetpos. I'm keeping my fingers crossed. The meaning of the HAVE_LARGEFILE_SUPPORT macro is not at all clear. I'll see if I can get it to work on Windows as well.
-
Andrew M. Kuchling authored
-
Martin v. Löwis authored
SCO_ATAN2_BUG, SCO_ACCEPT_BUG, and STRICT_SYSV_CURSES. Work aroudn a bug in the SCO UnixWare atan2() implementation.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Guido van Rossum authored
found it necessary to warn about.
-
Thomas Heller authored
bdist_wininst doesn't use the NT SCHEME any more, instead a custom SCHEME is used, which is exchanged at installation time, depending on the python version used. Avoid a bogus warning frpom install_lib about installing into a directory not on sys.path.
-
Andrew M. Kuchling authored
This will have to stay until we decide to drop 1.5.2 compatibility completely.
-
Jack Jansen authored
-
Jack Jansen authored
Shuts up another couple of gcc warnings.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
-
Tim Peters authored
-
Tim Peters authored
overflow. Needs testing on Linux (test_long.py and test_long_future.py especially).
-
Tim Peters authored
minimizes roundoff error.
-
Guido van Rossum authored
incomplete coverage of the test suite).
-
Guido van Rossum authored
a default repr() that's longer than 20 characters.
-
Tim Peters authored
getting Infs, NaNs, or nonsense in 2.1 and before; in yesterday's CVS we were getting OverflowError; but these functions always make good sense for positive arguments, no matter how large).
-
- 04 Sep, 2001 19 commits
-
-
Tim Peters authored
Repaired the ldexp docstring (said the name of the func was "ldexp_doc").
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
Fixed a few missing return values.
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
useful to people extending Python. Suggested by Alexandre Parenteau.
-
Tim Peters authored
__builtin__.dir(). Moved the guts from bltinmodule.c to object.c.
-
Jack Jansen authored
--enable-framework. Some modules that are also useful outside a fullblown application are always built.
-
Jack Jansen authored
-
Andrew M. Kuchling authored
-
Jack Jansen authored
artist (and a certain artist didn't jump in, yet).
-
Andrew M. Kuchling authored
Slightly modified version of patch from Jon Nelson (jnelson).
-
Andrew M. Kuchling authored
INSTALLED_FILES output. Modified version of a patch from Jon Nelson (jnelson)
-
Tim Peters authored
"/" and "//", and doesn't really care what they *mean*, just that both are tried (and that, whatever they mean, they act similarly for int and long arguments).
-
Fred Drake authored
This closes SF patch #451538.
-
Andrew M. Kuchling authored
have used the attribute argument provided as a parameter
-
Fred Drake authored
-
Guido van Rossum authored
mostly changes of / operators into //. Once or twice I did more or less than recommended.
-