Commit f6ce153 1 parent b966af2 commit f6ce153 Copy full SHA for f6ce153
File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
Version 1.3.41 (in progress)
2
2
============================
3
3
4
+ 2010-02-27: wsfulton
5
+ [Python] Remove -dirvtable from the optimizations included by -O as it this option
6
+ currently leads to memory leaks as reported by Johan Blake.
7
+
4
8
2010-02-13: wsfulton
5
9
[Ruby] A few fixes for compiling under ruby-1.9.x including patch from 'Nibble'.
6
10
Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ static const char *usage3 = (char *) "\
143
143
-proxydel - Generate a __del__ method even though it is now redundant (default) \n \
144
144
-safecstrings - Use safer (but slower) C string mapping, generating copies from Python -> C/C++\n \
145
145
-threads - Add thread support for all the interface\n \
146
- -O - Enable all the optimization options: \n \
147
- -modern -fastdispatch -dirvtable - nosafecstrings -fvirtual -noproxydel \n \
146
+ -O - Enable the following optimization options: \n \
147
+ -modern -fastdispatch -nosafecstrings -fvirtual -noproxydel \n \
148
148
-fastproxy -fastinit -fastunpack -fastquery -modernargs -nobuildnone \n \
149
149
-py3 - Generate code with Python 3 specific features:\n \
150
150
Function annotation \n \
@@ -405,7 +405,6 @@ class PYTHON:public Language {
405
405
} else if (strcmp (argv[i], " -O" ) == 0 ) {
406
406
classic = 0 ;
407
407
modern = 1 ;
408
- dirvtable = 1 ;
409
408
safecstrings = 0 ;
410
409
buildnone = 0 ;
411
410
nobuildnone = 1 ;
You can’t perform that action at this time.
0 commit comments