This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Allow larger programs to be frozen under Win32
Type: enhancement Stage:
Components: Demos and Tools, Windows Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, ganssauge, georg.brandl, loewis, terry.reedy
Priority: low Keywords: patch

Created on 2005-05-17 15:03 by ganssauge, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
freeze.patch ganssauge, 2005-05-17 15:03
Messages (5)
msg48364 - (view) Author: Gottfried Ganßauge (ganssauge) Date: 2005-05-17 15:03
The makefile generated by freeze on Windows ist not
suitable for Programs containing many imported modules.
This patch generates a makefile using an inline linker
response file.
msg48365 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2005-05-30 08:27
Logged In: YES 
user_id=21627

Can you please explain what you mean by "not suitable"? Do
you get some error? If so, what precisely is the error message?
msg59306 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2008-01-05 19:21
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).
msg113200 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2010-08-07 20:49
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).
msg119290 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-10-21 13:34
Applied in r85771.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41993
2010-12-30 22:14:16georg.brandlunlinkissue7962 dependencies
2010-10-21 13:34:59georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg119290

resolution: fixed
2010-08-07 20:49:53terry.reedylinkissue7962 dependencies
2010-08-07 20:49:49terry.reedysetnosy: + terry.reedy

messages: + msg113200
versions: + Python 3.2, - Python 2.6
2008-01-05 19:21:12christian.heimessetversions: + Python 2.6
nosy: + christian.heimes
messages: + msg59306
priority: normal -> low
components: + Windows
type: enhancement
2005-05-17 15:03:28ganssaugecreate