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
1ef106c9
Kaydet (Commit)
1ef106c9
authored
Eyl 04, 2001
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make pprint more locale-friendly; patch contributed by Denis S. Otkidach.
This closes SF patch #451538.
üst
4a596e3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
pprint.py
Lib/pprint.py
+21
-3
No files found.
Lib/pprint.py
Dosyayı görüntüle @
1ef106c9
...
...
@@ -34,7 +34,8 @@ saferepr()
"""
from
types
import
DictType
,
ListType
,
TupleType
from
types
import
DictType
,
ListType
,
TupleType
,
StringType
import
sys
try
:
from
cStringIO
import
StringIO
...
...
@@ -95,7 +96,6 @@ class PrettyPrinter:
if
stream
:
self
.
__stream
=
stream
else
:
import
sys
self
.
__stream
=
sys
.
stdout
def
pprint
(
self
,
object
):
...
...
@@ -187,12 +187,30 @@ class PrettyPrinter:
# Return triple (repr_string, isreadable, isrecursive).
_have_module
=
sys
.
modules
.
has_key
def
_safe_repr
(
object
,
context
,
maxlevels
=
None
,
level
=
0
):
level
+=
1
typ
=
type
(
object
)
if
not
(
typ
in
(
DictType
,
ListType
,
TupleType
)
and
object
):
if
not
(
typ
in
(
DictType
,
ListType
,
TupleType
,
StringType
)
and
object
):
rep
=
`object`
return
rep
,
(
rep
and
(
rep
[
0
]
!=
'<'
)),
0
elif
typ
is
StringType
:
if
not
_have_module
(
'locale'
):
return
`object`
,
1
,
0
if
"'"
in
object
and
'"'
not
in
object
:
closure
=
'"'
quotes
=
{
'"'
:
'
\\
"'
}
else
:
closure
=
"'"
quotes
=
{
"'"
:
"
\\
'"
}
sio
=
StringIO
()
for
char
in
object
:
if
char
.
isalpha
():
sio
.
write
(
char
)
else
:
sio
.
write
(
quotes
.
get
(
char
,
`char`
[
1
:
-
1
]))
return
closure
+
sio
.
getvalue
()
+
closure
,
1
,
0
if
context
.
has_key
(
id
(
object
)):
return
`_Recursion(object)`
,
0
,
1
...
...
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