- 27 Feb, 2003 6 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Michael W. Hudson authored
change _PyEval_SliceIndex to round massively negative longs up to -INT_MAX, instead of 0 but botched it. Get it right. Thx to Armin for the report.
-
Mark Hammond authored
a traceback.
-
Raymond Hettinger authored
* Changed variable name from 'list' to 'flist'. * Replaced "while 1" with "while True". * Replaced if/elif/elif/elif structure with a shorter and faster dispatch dictionary that maps attrs to methods. * Simplified and sped comparison logic by using ifilter, ifilterfalse, and dict.fromkeys. * Used True and False rather than 1 and 0.
-
- 26 Feb, 2003 10 commits
-
-
Raymond Hettinger authored
* Replaced "while 1" with "while True" * Rewrote read() and readline() for clarity and speed. * Replaced variable 'list' with 'hlist' * Used augmented assignment in two places.
-
Fred Drake authored
beyond Mac OS and Darwin. I'm not even sure they should be run on Darwin, but I'll let someone more knowledgable on that tell us.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Fix errors in the list of setup() arguments
-
Andrew M. Kuchling authored
specified with an absolute path, the object file is also written to an absolute path. The patch drops the drive and leading '/' from the source path, so a path like /path/to/foo.c results in an object file like build/temp.i686linux/path/to/foo.o.
-
Raymond Hettinger authored
* List/Tuple checkexact is faster for the common case. * Testing for Py_True and Py_False can be inlined for faster looping.
-
Just van Rossum authored
-
Walter Dörwald authored
cases increasing coverage in unicodedata.c from 87% to 95% (when the normalization tests are run). From SF patch #662807.
-
Just van Rossum authored
-
Just van Rossum authored
-
- 25 Feb, 2003 16 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
create a temporary file. This fixes #688011. Got rid of the install() method in macresource, and replaced it with a resource_filename() method which will optionally decode a given resourcefile (which may be applesingle-encoded) and return the real resourcefile. Use this new method in buildtools to copy the correct resource file to the bundle. This fixes #688007.
-
Jack Jansen authored
is now in buildtools.
-
Just van Rossum authored
os.listdir() may now return unicode strings on platforms that set Py_FileSystemDefaultEncoding.
-
Just van Rossum authored
-
Just van Rossum authored
- tweaked the help text a little. (Jack: up to you to change your client code.)
-
Just van Rossum authored
-
Just van Rossum authored
import warnings.py _after_ site.py has run. This ensures that site.py is again the first .py to be imported, giving it back full control over sys.path.
-
Just van Rossum authored
- Replaced bootstrap shell script with Python script. This means standalone apps built with bundlebuilder will not work on MacOS < 10.1, since we depend (again) on an installed Python. - Add a hack to set sys.executable; the bootstrap script does os.execve() with an argv[0] that's different from the actual Python executable (it has to match the CFBundleExecutable entry in the Info.plist to make the app work both from the Finder and the command line, and it has to be the bootstrap script), yet a proper sys.executable is needed to spawn auxiliary processes.
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Jack Jansen authored
-
Jack Jansen authored
of the form file:/path/to/file don't work whereas file:///path/to/file works fine. We convert the former to the latter.
-
Jack Jansen authored
building distutils extension modules also works if you've only done an altinstall. Fixes bug #677293.
-
Jack Jansen authored
-
Jack Jansen authored
called python.exe but actually pass it from the main Makefile to Mac/OSX/Makefile. This makes framework builds work again on case sensitive filesystems. Fixes bug #677753.
-
- 24 Feb, 2003 8 commits
-
-
Walter Dörwald authored
(see SF bug #690309) and raise ImportErrors instead of RuntimeErrors, so building Python continues even if importing iconv_codecs fails. This is a temporary fix until we get proper configure support for "broken" iconv implementations.
-
Guido van Rossum authored
-
Jack Jansen authored
-
Jack Jansen authored
filename as the source, but in Contents/Resources in the app bundle).
-
Jack Jansen authored
into dst in the bundle. The Python API already had this functionality
-
Walter Dörwald authored
-
Jack Jansen authored
os.popen(). Fixes #692222.
-
Jack Jansen authored
is found if you are running fink, but the module doesn't work. For now I disabled building iconv_codec on darwin.
-