Bugs item #3028647, was opened at 2010-07-13 07:24
Message generated for change (Settings changed) made by mhammond
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3028647&group_id=78018
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: Greg Hazel (ghazel)
Assigned to: Nobody/Anonymous (nobody)
Summary: pythonwin keeps opening new processes (no dde on Win64)
Initial Comment:
Every time I run "pythonwin foo", PythonWin opens a new process and a new window. Previously it would open "foo" in any existing process, MDI style.
I'm not sure what the culprit is, since I just installed PythonWin build 214. I also just started running Windows 7 64bit (I was previously on 32bit).
----------------------------------------------------------------------
>Comment By: Mark Hammond (mhammond)
Date: 2010-08-30 12:41
Message:
Cool - I reenabled it and it works for me too.
Checking in setup.py;
new revision: 1.112; previous revision: 1.111
----------------------------------------------------------------------
Comment By: Roger Upole (rupole)
Date: 2010-07-21 03:19
Message:
Good catch, apparently it just needs to be reenabled for x64 builds. The
only changes I had in the project file were some irrelevant linker options.
----------------------------------------------------------------------
Comment By: Greg Hazel (ghazel)
Date: 2010-07-20 09:33
Message:
I got it to work! All I had to do was this:
--- ..\pywin32.orig\setup.py 2010-07-19 16:22:14.034760000 -0700
+++ setup.py 2010-07-19 16:31:44.885410800 -0700
@@ -1837,7 +1837,7 @@
optional_headers=['afxres.h']),
WinExt_pythonwin("dde", pch_header="stdafxdde.h",
depends=["win32/src/stddde.h",
"pythonwin/ddemodule.h"],
- platforms=['win32'],
+ platforms=['win32', 'win-amd64'],
optional_headers=['afxres.h']),
]
# win32ui is large, so we reserve more bytes than normal
----------------------------------------------------------------------
Comment By: Greg Hazel (ghazel)
Date: 2010-07-20 09:03
Message:
What modifications need to be made to the project file?
----------------------------------------------------------------------
Comment By: Roger Upole (rupole)
Date: 2010-07-13 19:32
Message:
The dde module will build for amd64 using a modified project file, but I
haven't tried to integrate the necessary changes into the setup script
yet.
----------------------------------------------------------------------
Comment By: Mark Hammond (mhammond)
Date: 2010-07-13 10:34
Message:
This is because the DDE module hjasn't been ported to the 64bit world. It
may be fixed in the future (probably by re-implementing the functionality
using something other than DDE), but I really wouldn't hold my breath for
me to get a round tuit for this specific problem...
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3028647&group_id=78018
|