[issue1203650] Allow larger programs to be frozen under Win32

2010-10-21 Thread Georg Brandl
Georg Brandl added the comment: Applied in r85771. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue1203650] Allow larger programs to be frozen under Win32

2010-08-07 Thread Terry J. Reedy
Terry J. Reedy added the comment: I added this as a dependency to #7962. I believe there was some thought on the pydev list of removing freeze (because not-working or obsolete). -- nosy: +terry.reedy versions: +Python 3.2 -Python 2.6 ___ Python trac

[issue1203650] Allow larger programs to be frozen under Win32

2008-01-05 Thread Christian Heimes
Christian Heimes added the comment: The command line argument size is limited on Windows. One has to use a file instead of an argument list if the list exceeds a limit. IIRC the limit is rather low (< 1024 or even < 512). -- components: +Windows nosy: +tiran priority: normal -> low type: