- 13 May, 2000 1 commit
-
-
Gregory P. Smith authored
correctly ensure that it's 'dirname' exists.
-
- 12 May, 2000 19 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
First tiny steps towards Carbon: this project currently builds a PythonStandSmall without GUSI and with standard MSL malloc. Socket and select are the main victims of this.
-
Guido van Rossum authored
-
Gregory P. Smith authored
-
Gregory P. Smith authored
already been set (eg. by a command-line option).
-
Gregory P. Smith authored
have to wade through all the 'build' output when testing installation.
-
Gregory P. Smith authored
-
Gregory P. Smith authored
Caught up with renaming in 'install_misc' base class. Changed 'run()' to chmod installed scripts under Unix.
-
Gregory P. Smith authored
- renamed '_copydata()' to 'copy_files()' - changed it to record complete output filenames - dropped '_outputdata()' in favour of much simpler 'get_outputs()'
-
Gregory P. Smith authored
family, including the new 'install_scripts' and 'install_data' commands.
-
Gregory P. Smith authored
adds the 'install_data' and 'install_scripts' commands; these two are trivial thanks to the 'install_misc' base class in cmd.py. (Minor tweaks and commentary by me; the code is untested so far.)
-
Gregory P. Smith authored
Tweaked error-generating code.
-
Gregory P. Smith authored
- added 'find_config_files()' and 'parse_config_files()' methods - added 'command_options' attribute Comment/docstring updates.
-
Gregory P. Smith authored
added a global '_environ_checked' so we know if it's already been called.
-
Gregory P. Smith authored
Also added creation of 'implib_dir', a temporary directory specific to MSVC++ -- but I checked in two ways of fixing it (Lyle's and mine), because I'm not sure which is right.
-
Gregory P. Smith authored
-
- 11 May, 2000 9 commits
-
-
Guido van Rossum authored
that before) in the previous patch has one problem; rint() is not in the C math library on all platforms (e.g. not for VC++). Make it conditional on HAVE_RINT.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
Calling Sleep(0) for a spinlock can cause a priority inversion, adding comments to explain what's going on.
-
- 10 May, 2000 8 commits
-
-
Fred Drake authored
extern "C" for C++.
-
Fred Drake authored
Explain that the name of the initialization function must be init<module>(). Omission noted by Daniel Kozan <crum@dev-group.com>.
-
Guido van Rossum authored
the notice yet).
-
Fred Drake authored
like the short, ambiguous name.
-
Fred Drake authored
Instead of using Netscape through os.system(), use the new browser.open() function to load the documentation on the default browser. On Windows, this will use the installed documentation if it exists, instead of hitting python.org.
-
Fred Drake authored
Web browsers.
-
Jack Jansen authored
GUSI 2.0.5 has a non-functional getsockname() if you use Open Transport. For now the workaround is to only enable MacTCP sockets.
-
Guido van Rossum authored
Use "win32" for sys.platform on Win64 instead of "win32" because: 1. While it may be confusing to the Python scriptor on Win64 that he has to check for win*32*, that is something that he will learn the first time. It is better than the alternative of the scriptor happily using "win64" and then that code not running on Win32 for no good reason. 2. The main question is: is Win64 so much more like Win32 than different from it that the common-case general Python programmer should not ever have to make the differentiation in his Python code. Or, at least, enough so that such differentiation by the Python scriptor is rare enough that some other provided mechanism is sufficient (even preferable). Currently the answer is yes. Hopefully MS will not change this answer.
-
- 09 May, 2000 3 commits
-
-
Fred Drake authored
Limit the 'b' formatter of PyArg_ParseTuple to valid values of an unsigned char, i.e. [0,UCHAR_MAX]. It is expected that this is the common usage of 'b'. An OverflowError is raised if the parsed value is outside this range.
-
Fred Drake authored
Added a useful link to Markus Kuhn's Unicode and UTF-8 FAQ.
-
Fred Drake authored
Added another test for string formatting (the one that produced the core dump now fixed in unicodeobject.c).
-