aboutsummaryrefslogtreecommitdiff
path: root/pypy/bin
Commit message (Collapse)AuthorAgeFilesLines
...
| * merge from defaultMatti Picus2012-03-271-0/+18
| |\
* | \ merge defaultBenjamin Peterson2012-03-141-0/+18
|\ \ \ | | |/ | |/|
| * | Add bin/rpythonMaciej Fijalkowski2012-03-141-0/+18
| |/
* | hg merge defaultAmaury Forgeot d'Arc2012-01-291-0/+2
|\|
| * seems to be necessary for running continuation stuffMaciej Fijalkowski2012-01-251-0/+2
| |
* | hg merge defaultsAmaury Forgeot d'Arc2011-12-171-29/+31
|\|
| * Also accept a full directory name, for easier tab-completion.Armin Rigo2011-12-071-1/+8
| |
| * Tweaks.Armin Rigo2011-12-071-3/+11
| |
| * Throw away and restart another attempt at pypy/bin/checkmodule.Armin Rigo2011-12-071-28/+15
| |
* | New print() syntax for applevel codeAmaury Forgeot d'Arc2011-10-121-1/+1
|/
* kill carbonpythonAntonio Cuni2011-04-271-5/+0
|
* remove libpythondir from autopath; it's not used anywhereBenjamin Peterson2011-01-171-3/+0
|
* I don't know how to force an option to terminates the option list,Amaury Forgeot d'Arc2010-09-101-12/+15
| | | | | | | | but at least this change does the right thing with: bin/py.py -m test.regrtest -v test_sys i.e. '-v' is an option of the regrtest script, not for bin/py.py.
* merge from trunkBenjamin Peterson2010-09-081-0/+2
|
* merge from trunkBenjamin Peterson2010-06-242-1/+10
|
* kill prolog stuff hereCarl Friedrich Bolz2009-12-021-8/+0
|
* merging py11 branch that integrates the py-1.1.0 release verbatim andHolger Krekel2009-11-112-3/+2
| | | | a py/bin/ directory containing the command line scripts.
* Finish the merge of trunk into pyjitpl5.Armin Rigo2009-06-301-28/+0
|
* Add the --cc option to py.py.Amaury Forgeot d'Arc2009-01-221-0/+8
| | | | | | I'm not sure it's the best place to put this. The same option also resides pypy/config/translationoption.py, with similar effect, except that py.py always executes on the 'host' platform.
* fix autopath to import py only *after* sys.path has been augmentedMaciej Fijalkowski2008-10-241-2/+1
|
* Change 2.4.1 to 2.5.2. Add a new dir in autopath.Maciej Fijalkowski2008-10-241-0/+3
|
* svn merge -r58379:59313 svn+ssh://codespeak.net/svn/pypy/distArmin Rigo2008-10-221-0/+72
|
* Check-in merge attempt. Diff is to huge to read it.Maciej Fijalkowski2008-09-232-11/+36
|
* ImportWarning and -W command-line option. There are bugs in the parser (i ↵Bruno Gola2008-06-181-0/+11
| | | | think) that I need to fix because when using Grammar2.5 it raises SyntaxError where it shouldn't...
* (cfbolz, pedronis): Merge the remove-extcompiler-rctypes branch: kill rctypes,Armin Rigo2007-11-242-8/+1
| | | | | | the cpy objspace, the extcompiler, the support for making cpython extension modules with genc. Make genc tests working again by writing a small ctypes wrapper. All thse "features" were broken in various degrees.
* Support for -unknown optionMaciej Fijalkowski2007-10-161-0/+4
|
* add support for -h and --help optionsAntonio Cuni2007-10-161-0/+3
|
* redo xoraxax cleanupSamuele Pedroni2007-09-291-5/+2
|
* reverting the old-style change for now (46896, 46933), it broke testing ↵Samuele Pedroni2007-09-291-6/+5
| | | | | | | | infrastructure and also we probably still want an translation time option to get a pypy-c where old-style are the default. I'll make a branch and re-apply the changes there and try to sort out the testing mess.
* Move the oldstyle translation option to py.py and app_main.py to make it ↵Alexander Schremmer2007-09-261-5/+6
| | | | setable at runtime.
* Only import 'readline' when going interactive. This caused a failure inArmin Rigo2007-09-161-4/+4
| | | | | | test_import.py, which got confused by escape characters printed by readline. For mysterious reasons this failure only started to occur today, and only on my laptop.
* add a script for carbonpython to the bin directoryAntonio Cuni2007-06-281-0/+5
|
* Merge the graphserver-dist branch.Armin Rigo2007-06-161-41/+4
| | | | For description, see my mail "Pygame viewer" on pypy-dev.
* some options for extcompilerGodefroid Chappelle2007-06-131-7/+0
|
* Moved to /svn/build/buildtool/bin/.Guido Wesdorp2007-03-261-100/+0
|
* Moved to /svn/build/buildtool/bin/startcompile.py.Guido Wesdorp2007-03-261-8/+0
|
* Some indentation, removed unused import, added print when zip downloadingGuido Wesdorp2007-03-262-5/+4
| | | | starts (in compile.py).
* add the prolog front end entry point to binCarl Friedrich Bolz2007-03-251-0/+8
|
* hrmpf. care is needed here, not whackingCarl Friedrich Bolz2007-03-221-1/+2
|
* Combining compile config and translate config into and using that on the buildGuido Wesdorp2007-03-221-1/+11
| | | | | | | server both for compilation and translation options. This seems to work, but for some reasons compilations fail with strange annotation errors when ran. Still, it works a bit more than before. :| (I hope someone who knows more about PyPy can figure out what the problem is...)
* Added --foreground switch to startcompile.py. In order to support this, and toGuido Wesdorp2007-03-191-90/+4
| | | | | | | | | be able to test it a little bit, I did some refactorings (like moving most of the startcompile to a seperate file and splitting it up a bit, moving some vars to config.py). Also fixed the busy_on links in buildersinfo.html, fixed a test in test_app.py, and did several small cleanups to more easily allow re-use of the project (issues that popped up while adding a test project) and fixed some issues in the metaserver queue handling.
* Fixed nasty cleanup issues in web server, small fix (making sure channel getsGuido Wesdorp2007-03-151-30/+32
| | | | closed properly) in buildserver shell script too.
* (guido, cfbolz, people watching) replacing with version fromCarl Friedrich Bolz2007-03-131-0/+95
| | | | guido-buildtool-web branch
* (guido, not sure who else but some more people) removing to replace withCarl Friedrich Bolz2007-03-131-96/+0
| | | | version from branch
* Remove support for PYTHONSTARTUP from untranslated py.py as it is likelyAnders Chrigstrom2007-03-071-7/+0
| | | | to confuse (and significantly increase startuptime) rather than help.
* Add support for PYTHONSTARTUP environment variable.Anders Chrigstrom2007-03-051-2/+19
|
* Implement -S (don't 'import site') option.Anders Chrigstrom2007-02-201-8/+11
|
* Import site module on startup.Anders Chrigstrom2007-02-201-1/+11
|
* C Python -> CPythonCarl Friedrich Bolz2007-02-151-1/+1
|
* (mwh, cfbolz)Michael Hudson2007-01-112-3/+3
| | | | | | use /usr/bin/env python, not /usr/bin/python in build server related scripts. if a build result is already available, give a hint as to on which machine it can be found.