- 27 Jan, 2001 5 commits
-
-
Neil Schemenauer authored
-
Neil Schemenauer authored
and an option is more friendly then manually setting a variable.
-
http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470Tim Peters authored
SF patch http://sourceforge.net/patch/?func=detailpatch&patch_id=103453&group_id=5470 PyMember_Set of T_CHAR always raises exception. Unfortunately, this is a use of a C API function that Python itself never makes, so there's no .py test I can check in to verify this stays fixed. But the fault in the code is obvious, and Dave Cole's patch just as obviously fixes it.
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
- 26 Jan, 2001 23 commits
-
-
Tim Peters authored
-
Andrew M. Kuchling authored
arguments instead to handle overrides provided on the make command line.
-
Andrew M. Kuchling authored
Fixed typo in message
-
Andrew M. Kuchling authored
run setup.py with the --install-platlib flag so you can override 'prefix' when running make (e.g. make prefix=/tmp/python/usr/local install) Instead of using mkdir to create directories, use install -d (mkdir -p apparently isn't portable) Emacs make-mode reported line 371 as suspicious; removed the whitespace from that line.
-
Neil Schemenauer authored
- Setup is now copied from Setup.dist by configure.
-
Andrew M. Kuchling authored
Add header comment and __version__
-
Fred Drake authored
-
Fred Drake authored
primarily from Evelyn Mitchell (thanks!). This closes SF patch #103412.
-
Martin v. Löwis authored
-
Marc-André Lemburg authored
if we can find the libtermcap in the usual places. Some platforms don't have libtermcap, e.g. MacOSX.
-
Marc-André Lemburg authored
1. skipping of extensions which cause an error (a warning message is written to stdout, but the build process no longer fails completely) 2. the readline extension to compile on SuSE Linux (and probably other platforms too) by adding /usr/lib/termcap to the library search path
-
Marc-André Lemburg authored
building.
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Jack Jansen authored
-
Neil Schemenauer authored
- Put shared modules in the same place as object files.
-
Neil Schemenauer authored
- Add CFLAGSFORSHARED variable. configure sets this to CCSHARED if LDLIBRARY is a shared library. - Remove -fPIC from OPT, it has no business there. - Change CCSHARED option for Linux to -fPIC. It should probably be -fPIC on a few other platforms as well. - Don't create silly boot Makefile, create Setup files and run makesetup instead.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
is a shared library. - Add PY_CFLAGS variable (flags used to compile the interpreter) - clobber now just removes object files, libraries and binaries
-
Fred Drake authored
This closes SF bug #129759.
-
Tim Peters authored
examples to flesh it out for the uninitiated. Here they are.
-
Tim Peters authored
-
Tim Peters authored
-
- 25 Jan, 2001 12 commits
-
-
Fred Drake authored
that PYTHON_API_VERSION be incremented.
-
Guido van Rossum authored
-
Jeremy Hylton authored
arguments, which were based on an interim development API.
-
Tim Peters authored
-
Tim Peters authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
test_new: new.code() noew takes two more arguments test_grammer: Add a bunch of test cases for lambda (not really PEP 227 related)
-
Jeremy Hylton authored
New tests cases for nested scopes.
-
Jeremy Hylton authored
prevent binding for str from masking use of builtin str in nested function. (This is the only case I found in the standard library where a local shadows a global or builtin. There may be others, but the regression test doesn't catch them.)
-
Jeremy Hylton authored
Track changes to new opcodes. Add hasfree list that applies to all ops that use the closure.
-
Jeremy Hylton authored
Track changes to PyFrame_New() and PyFuntion_New().
-
Neil Schemenauer authored
-