Skip to content

Commit

Permalink
Remove obsolete is_platform_unicode marked for removal 16 years ago (
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam authored Oct 4, 2024
1 parent e24ecae commit 33fd91e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Coming in build 307, as yet unreleased
--------------------------------------

### pywin32
* Remove obsolete and unused `pywin.is_platform_unicode` (#2343, @Avasam)
* Fix `isapi.ThreadPoolExtension`'s printing of exception traceback broken on Python 3.8+ (#2312, @Avasam)
* Add RealGetWindowClass (#2299, @CristiFati)
* Make it compile on Python 3.13 (#2260, @clin1234)
Expand Down
10 changes: 3 additions & 7 deletions Pythonwin/pywin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# is_platform_unicode is an old variable that was never correctly used and
# is no longer referenced in pywin32. It is staying for a few releases incase
# others are looking at it, but it will go away soon!
is_platform_unicode = 0

# This one *is* real and used - but in practice can't be changed.
default_scintilla_encoding = "utf-8" # Scintilla _only_ supports this ATM
# Referenced and used variable - but in practice can't be changed.
# Scintilla _only_ supports "utf-8" ATM
default_scintilla_encoding = "utf-8"

0 comments on commit 33fd91e

Please sign in to comment.