File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ Coming in build 307, as yet unreleased
15
15
--------------------------------------
16
16
17
17
### pywin32
18
+ * Remove obsolete and unused `pywin.is_platform_unicode` (#2343, @Avasam)
18
19
* Fix `isapi.ThreadPoolExtension`'s printing of exception traceback broken on Python 3.8+ (#2312, @Avasam)
19
20
* Add RealGetWindowClass (#2299, @CristiFati)
20
21
* Make it compile on Python 3.13 (#2260, @clin1234)
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments