Skip to content

Commit 33fd91e

Browse files
authored
Remove obsolete is_platform_unicode marked for removal 16 years ago (#2343)
1 parent e24ecae commit 33fd91e

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Coming in build 307, as yet unreleased
1515
--------------------------------------
1616

1717
### pywin32
18+
* Remove obsolete and unused `pywin.is_platform_unicode` (#2343, @Avasam)
1819
* Fix `isapi.ThreadPoolExtension`'s printing of exception traceback broken on Python 3.8+ (#2312, @Avasam)
1920
* Add RealGetWindowClass (#2299, @CristiFati)
2021
* Make it compile on Python 3.13 (#2260, @clin1234)

Pythonwin/pywin/__init__.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# is_platform_unicode is an old variable that was never correctly used and
2-
# is no longer referenced in pywin32. It is staying for a few releases incase
3-
# others are looking at it, but it will go away soon!
4-
is_platform_unicode = 0
5-
6-
# This one *is* real and used - but in practice can't be changed.
7-
default_scintilla_encoding = "utf-8" # Scintilla _only_ supports this ATM
1+
# Referenced and used variable - but in practice can't be changed.
2+
# Scintilla _only_ supports "utf-8" ATM
3+
default_scintilla_encoding = "utf-8"

0 commit comments

Comments
 (0)