Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add Vladimir Marangozov's object allocator. It is disabled by default. This | Neil Schemenauer | 2001-02-27 | 1 | -0/+1 | |
| | | | | closes SF patch #401229. | |||||
* | Add missing dependents of graminit.h. | Neil Schemenauer | 2001-02-27 | 1 | -0/+2 | |
| | ||||||
* | Generate grammar source files in srcdir. Ignore the error if they cannot | Neil Schemenauer | 2001-02-27 | 1 | -3/+3 | |
| | | | | be created (perhaps the source directory is read-only). | |||||
* | Fix bug in clean target (closes SF patch 103864 and bug 132879). The clobber | Neil Schemenauer | 2001-02-19 | 1 | -10/+4 | |
| | | | | target now removes some configure files (like it did before). | |||||
* | Set PYTHONPATH when running setup.py in order to override any ambient | Andrew M. Kuchling | 2001-02-17 | 1 | -2/+2 | |
| | | | | | | value for it, as suggested in bug #129854. This prevents an old PYTHONPATH confusing setup.py (say, if it results in Python finding an old version of the Distutils) | |||||
* | Remove confusing explaination about altinstall target and refer to | Neil Schemenauer | 2001-02-16 | 1 | -15/+2 | |
| | | | | the README file. | |||||
* | Build grammar files in their proper place rather than moving them. This should | Neil Schemenauer | 2001-02-16 | 1 | -5/+3 | |
| | | | | allow building with a read-only source tree (although I haven't tried it). | |||||
* | Simplify linking on BeOS. Rename some files. Closes SF patch #103679. | Neil Schemenauer | 2001-02-16 | 1 | -9/+8 | |
| | ||||||
* | Specify directory permissions properly. Closes SF patch #103717. | Neil Schemenauer | 2001-02-10 | 1 | -7/+7 | |
| | ||||||
* | Relax the rules for using 'from ... import *' and exec in the presence | Jeremy Hylton | 2001-02-09 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | of nested functions. Either is allowed in a function if it contains no defs or lambdas or the defs and lambdas it contains have no free variables. If a function is itself nested and has free variables, either is illegal. Revise the symtable to use a PySymtableEntryObject, which holds all the revelent information for a scope, rather than using a bunch of st_cur_XXX pointers in the symtable struct. The changes simplify the internal management of the current symtable scope and of the stack. Added new C source file: Python/symtable.c. (Does the Windows build process need to be updated?) As part of these changes, the initial _symtable module interface introduced in 2.1a2 is replaced. A dictionary of PySymtableEntryObjects are returned. | |||||
* | Install shared modules enabled by Setup* in $(DESTSHARED) not | Neil Schemenauer | 2001-02-06 | 1 | -3/+4 | |
| | | | | $(DESTSHARED)/Modules. | |||||
* | Tweak clean targets yet again. | Neil Schemenauer | 2001-02-03 | 1 | -15/+12 | |
| | ||||||
* | add compile.h and symtable.h to list of header files | Jeremy Hylton | 2001-02-02 | 1 | -0/+2 | |
| | ||||||
* | Undo recent exclusion of test_fork1 and test_zlib. These tests don't | Jeremy Hylton | 2001-02-02 | 1 | -1/+1 | |
| | | | | | | trigger my arbitrary exlusion rule, which is: takes more than 10 seconds of wall clock time on my machine. If these tests are going to be skipped, then a boatload of slower tests should be skipped, too. | |||||
* | Added fork1, linuxaudiodev, sunaudiodev, and zlib to the tests skipped | Fred Drake | 2001-02-02 | 1 | -1/+2 | |
| | | | | by the quicktest target. | |||||
* | add quicktest target -- runs test suite except for the eight slowest tests | Jeremy Hylton | 2001-02-01 | 1 | -0/+7 | |
| | ||||||
* | Restore the automatic use of the oldsharedmods and oldsharedinstall targets | Andrew M. Kuchling | 2001-01-29 | 1 | -2/+3 | |
| | ||||||
* | Don't use $< in normal make rules: it's not portable. Using $< in | Sjoerd Mullender | 2001-01-29 | 1 | -6/+6 | |
| | | | | inference rules (e.g. .c.o) is fine. | |||||
* | - Fix buildno dependencies (I hope). | Neil Schemenauer | 2001-01-27 | 1 | -9/+17 | |
| | | | | - Change one last EXE to EXEEXT. | |||||
* | Remaining single-line change from patch #102409: to install shared modules, | Andrew M. Kuchling | 2001-01-26 | 1 | -16/+10 | |
| | | | | | | | | | | | 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. | |||||
* | - Add CFLAGSFORSHARED variable. configure sets this to CCSHARED if LDLIBRARY | Neil Schemenauer | 2001-01-26 | 1 | -32/+25 | |
| | | | | | | is a shared library. - Add PY_CFLAGS variable (flags used to compile the interpreter) - clobber now just removes object files, libraries and binaries | |||||
* | Make module objects from Setup depend on Python.h headers. | Neil Schemenauer | 2001-01-25 | 1 | -2/+4 | |
| | ||||||
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+1 | |
| | | | | | | A cell contains a reference to a single PyObject. It could be implemented as a mutable, one-element sequence, but the separate type has less overhead. | |||||
* | Flat makefile based on toplevel Makefile.in and makefiles in build | Neil Schemenauer | 2001-01-24 | 1 | -0/+814 | |
subdirectories. Those other makefiles will go away eventually. |