diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-07-16 07:51:03 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-07-16 07:51:03 +0000 |
commit | 74a560bfe000c60dedd513604cea372dbac6590a (patch) | |
tree | d88aefd0d873c1a889af3aae1bb5b9fbca8c2d16 /packages/python/python_2.5.2.bb | |
parent | 1329a4624bfec8dc8dcf86c2a6e14125a32d9021 (diff) |
python 2.5.2 add parameter to run python in unoptimized bytecode mode
Thanks to the default-is-optimized patch, this python was running in optimized
mode all the time, there was no way to run it unoptimized. However this
is necessary at times (e.g. if you want to run code that contains 'assert'
statements, since optimized bytecode strips these out), so I added a new
command line parameter 'N' to python that allows you to run it unoptimized.
Diffstat (limited to 'packages/python/python_2.5.2.bb')
-rw-r--r-- | packages/python/python_2.5.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/python/python_2.5.2.bb b/packages/python/python_2.5.2.bb index 22aac7c9ee..9617871fff 100644 --- a/packages/python/python_2.5.2.bb +++ b/packages/python/python_2.5.2.bb @@ -6,7 +6,7 @@ PRIORITY = "optional" DEPENDS = "python-native readline zlib gdbm openssl sqlite3 tcl tk" DEPENDS_sharprom = "python-native readline zlib gdbm openssl" # bump this on every change in contrib/python/generate-manifest-2.5.py -PR = "ml4" +PR = "ml6" PYTHON_MAJMIN = "2.5" |