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
2b492b61
Kaydet (Commit)
2b492b61
authored
Eki 09, 2002
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
News about repr() and 8-bit characters, and setlocale() in the
readline module.
üst
628e3bf6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
NEWS
Misc/NEWS
+17
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
2b492b61
...
@@ -66,6 +66,12 @@ Type/class unification and new-style classes
...
@@ -66,6 +66,12 @@ Type/class unification and new-style classes
Core
and
builtins
Core
and
builtins
-----------------
-----------------
-
The
repr
()
function
for
8
-
bit
strings
now
preserves
all
characters
that
are
considered
printable
in
the
current
locale
.
(
Previously
,
all
bytes
that
are
not
printable
ASCII
would
be
encoded
in
hex
.)
This
requires
the
user
to
set
the
current
locale
;
in
the
initial
"C"
locale
the
old
behavior
is
maintained
.
[
SF
patch
479898
]
-
Unicode
file
name
processing
for
Windows
(
PEP
277
)
is
implemented
.
-
Unicode
file
name
processing
for
Windows
(
PEP
277
)
is
implemented
.
All
platforms
now
have
an
os
.
path
.
supports_unicode_filenames
attribute
,
All
platforms
now
have
an
os
.
path
.
supports_unicode_filenames
attribute
,
which
is
set
to
True
on
Windows
NT
/
2000
/
XP
,
and
False
elsewhere
.
which
is
set
to
True
on
Windows
NT
/
2000
/
XP
,
and
False
elsewhere
.
...
@@ -348,6 +354,17 @@ Extension modules
...
@@ -348,6 +354,17 @@ Extension modules
Library
Library
-------
-------
-
Importing
the
readline
module
now
no
longer
has
the
side
effect
of
calling
setlocale
(
LC_CTYPE
,
""
).
The
initial
"C"
locale
,
or
whatever
locale
is
explicitly
set
by
the
user
,
is
preserved
.
If
you
want
repr
()
of
8
-
bit
strings
in
your
preferred
encoding
to
preserve
all
printable
characters
of
that
encoding
,
you
have
to
add
the
following
code
to
your
$
PYTHONSTARTUP
file
or
to
your
application
's
main():
import locale
locale.setlocale(locale.LC_CTYPE, "")
- shutil.move was added. shutil.copytree now reports errors as an
- shutil.move was added. shutil.copytree now reports errors as an
exception at the end, instead of printing error messages.
exception at the end, instead of printing error messages.
...
...
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