Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ddeclient and ddeserver demos import error #2290

Merged
merged 5 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ https://mhammond.github.io/pywin32_installers.html.
Coming in build 309, as yet unreleased
--------------------------------------

* Fixed `ddeclient` and `ddeserver` demos import error (#2290, @Avasam)
* The `EvtSubscribe_push` demo now actually demonstrates the callback action and the event context being filled. (#2281, @Avasam)
* Fixed Pythonwin's editor failing due to invalid regex import (#2419, @Avasam)
* Last error wrongly set by some modules (#2302, @CristiFati)
Expand Down
2 changes: 1 addition & 1 deletion win32/Demos/dde/ddeclient.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 'Request' example added jjk 11/20/98

import win32ui # isort: skip # Must be imported before dde !
import dde
import win32ui

server = dde.CreateServer()
server.Create("TestClient")
Expand Down
2 changes: 1 addition & 1 deletion win32/Demos/dde/ddeserver.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 'Request' example added jjk 11/20/98

import win32ui # isort: skip # Must be imported before dde !
import dde
import win32ui
from pywin.mfc import object


Expand Down
Loading