py2exe: update walkthrough (suppress popup error message on exit)
This commit is contained in:
parent
95b496e9f4
commit
744e5292ef
|
@ -33,6 +33,7 @@ psycopg2 ... http://www.stickpeople.com/projects/python/win-psycopg/psycopg2-2.2
|
|||
(py)pokereval v138 ... http://sourceforge.net/projects/fpdb/files/fpdb/pypoker-eval-win32/pokereval-138.win32.exe/download
|
||||
(Note: There are no official windows builds, this installer is built from source. A walkthrough is in the same directory as this walkthrough.
|
||||
|
||||
|
||||
1.2/ MySQL
|
||||
|
||||
Install the following file:
|
||||
|
@ -67,6 +68,26 @@ with this line:
|
|||
1.3.4/ Save and exit
|
||||
|
||||
|
||||
1.4/ Patch py2exe to stop popup runtime error message
|
||||
|
||||
see http://www.py2exe.org/index.cgi/StderrLog for technical info.
|
||||
|
||||
1.4.1/
|
||||
|
||||
dos> write C:\Python26\Lib\site-packages\py2exe\boot_common.py
|
||||
|
||||
replace:
|
||||
atexit.register(alert, 0,
|
||||
"See the logfile '%s' for details" % fname,
|
||||
"Errors occurred")
|
||||
with:
|
||||
#atexit.register(alert, 0,
|
||||
# "See the logfile '%s' for details" % fname,
|
||||
# "Errors occurred")
|
||||
|
||||
1.4.2/ save and exit
|
||||
|
||||
|
||||
|
||||
Step 2 Setup GTK
|
||||
-----------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user