Skip to content

Commit

Permalink
Fix ddeclient and ddeserver demos import error (#2290)
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Oct 26, 2024
1 parent d2b2ae5 commit 14df895
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit 14df895

Please sign in to comment.