[issue6078] freeze.py doesn't work

2009-05-22 Thread Georg Brandl
Georg Brandl added the comment: Added in r72833. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue6078] freeze.py doesn't work

2009-05-22 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: The problem is that the warnings module's init function does not adhere to the standard Python naming scheme for extension modules: it's called _PyWarnings_Init rather than init_warnings. This C helper module was added to Python 2.6. OTOH, warnings is a bui

[issue6078] freeze.py doesn't work

2009-05-21 Thread Michael Zalokar
New submission from Michael Zalokar : I've tried this with python 2.6.0, python 2.6.1 and python 2.6.2 all with the same results. bash-3.2$ cat hello.py print "hello world" bash-3.2$ python -V Python 2.6.2 bash-3.2$ python $PYTHON_DIR/Python-2.6.2/Tools/freeze/freeze.py hello.py Name