Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
0b9a18a4
Kaydet (Commit)
0b9a18a4
authored
Mar 06, 2010
tarafından
Florent Xicluna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#6906: TCL_LIBRARY and TK_LIBRARY environment variables should be encoded.
üst
aa90db94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
FixTk.py
Lib/lib-tk/FixTk.py
+5
-5
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/lib-tk/FixTk.py
Dosyayı görüntüle @
0b9a18a4
...
...
@@ -19,10 +19,10 @@ except (ImportError, AttributeError):
return
s
else
:
def
convert_path
(
s
):
if
isinstance
(
s
,
str
):
s
=
s
.
decode
(
"mbcs"
)
assert
isinstance
(
s
,
str
)
# sys.prefix contains only bytes
udir
=
s
.
decode
(
"mbcs"
)
hdir
=
ctypes
.
windll
.
kernel32
.
\
CreateFileW
(
s
,
0x80
,
# FILE_READ_ATTRIBUTES
CreateFileW
(
udir
,
0x80
,
# FILE_READ_ATTRIBUTES
1
,
# FILE_SHARE_READ
None
,
3
,
# OPEN_EXISTING
0x02000000
,
# FILE_FLAG_BACKUP_SEMANTICS
...
...
@@ -38,9 +38,9 @@ else:
if
res
==
0
:
# Conversion failed (e.g. network location)
return
s
s
=
buf
[:
res
]
s
=
buf
[:
res
]
.
encode
(
"mbcs"
)
# Ignore leading \\?\
if
s
.
startswith
(
u
"
\\\\
?
\\
"
):
if
s
.
startswith
(
"
\\\\
?
\\
"
):
s
=
s
[
4
:]
return
s
...
...
Misc/NEWS
Dosyayı görüntüle @
0b9a18a4
...
...
@@ -41,6 +41,8 @@ Core and Builtins
Library
-------
- Issue #6906: Tk should not set Unicode environment variables on Windows.
- Issue #1054943: Fix unicodedata.normalize('NFC', text) for the Public Review
Issue #29
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment