Index: Python-2.5.2/Python/compile.c =================================================================== --- Python-2.5.2.orig/Python/compile.c +++ Python-2.5.2/Python/compile.c @@ -30,7 +30,7 @@ #include "symtable.h" #include "opcode.h" -int Py_OptimizeFlag = 0; +int Py_OptimizeFlag = 1; /* ISSUES: Index: Python-2.5.2/Modules/main.c =================================================================== --- Python-2.5.2.orig/Modules/main.c +++ Python-2.5.2/Modules/main.c @@ -40,7 +40,7 @@ static char **orig_argv; static int orig_argc; /* command line options */ -#define BASE_OPTS "c:dEhim:OQ:StuUvVW:xX?" +#define BASE_OPTS "c:dEhim:ONQ:StuUvVW:xX?" #ifndef RISCOS #define PROGRAM_OPTS BASE_OPTS @@ -68,8 +68,7 @@ Options and arguments (and corresponding "; static char *usage_2 = "\ -m mod : run library module as a script (terminates option list)\n\ --O : optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)\n\ --OO : remove doc-strings in addition to the -O optimizations\n\ +-N : do NOT optimize generated bytecode\n\ -Q arg : division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew\n\ -S : don't imply 'import site' on initialization\n\ -t : issue warnings about inconsistent tab usage (-tt: issue errors)\n\ @@ -302,7 +301,10 @@ Py_Main(int argc, char **argv) break; case 'O': - Py_OptimizeFlag++; + fprintf(stderr, "-O is already default in this version. Ignoring\n"); + + case 'N': + Py_OptimizeFlag=0; break; case 'S': a href='/cgit/multitech-oe.git/tree/packages/inkwp?id=b30c59ccb5bba216ec4bf4b3951e1da8c7d36285'>treecommitdiff
path: root/packages/inkwp
9.6
AgeCommit message (Expand)AuthorFiles
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi1
2005-06-30import clean BK tree at cset 1.3670Koen Kooi1
2005-02-23Merge bk://oe-devel.bkbits.net/openembeddednslu2-linux.adm@bkbits.net1
2004-12-09Merge oe-devel@oe-devel.bkbits.net:openembeddedChris Larson1
Junqian Gordon Xu2
2008-06-29fakeroot 1.7.1 fix typo in premature commitMichael Lauer1
2008-06-29fakeroot: remove 1.2.13, switch 1.7.1 to a SRC_URI that has been stable for a...Michael Lauer4
2008-06-29fakeroot[-native]: update to 1.9.5Michael Lauer2
2008-04-01fakeroot: update to 1.9.4. fixes do_fetch problem reported as 4143.Rolf Leggewie2
2008-01-28divers: delete 22 empty directoriesRolf Leggewie1
2008-01-24fakeroot: update to latest version 1.9.1Rolf Leggewie5
2007-10-31fakeroot: upgrade to 1.8.3 upstream versionMike Westerhof6
2007-09-06fakeroot/fakeroot-native_1.7.1.bb : dont apply same patch twiceGraeme Gregory1
2007-09-06fakeroot: Apply patch for fakeroot-native to fakeroot too.Florian Boor1
2007-08-10fakeroot: upgrade to 1.7.1 version, fixes odd caching anomolies on someMike Westerhof3
2006-11-21fakeroot-native: Remove bogus RDEPENDS on util-linux, replacing with util-lin...Richard Purdie1
2006-10-15fakeroot 1.2.13: Run it through oe-stylize.py to tidy it up.Jamie Lenehan1
2006-10-15fakeroot 1.2.13: Fakeroot requires getopt which is provided via util-linux,Jamie Lenehan1
2006-08-10fakeroot: add stagingKoen Kooi1
2006-08-05packages: sed -i s/^"include "/"require "/ */*.bb GNU sed rocks!Holger Freyther1
2006-05-23fakeroot: fix SRC_URIMichael Lauer1
2006-03-13conf/documentation.conf:Holger Freyther1