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
50a1acb2
Kaydet (Commit)
50a1acb2
authored
May 16, 2008
tarafından
Alexandre Vassalotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Changed references to the reprlib module to use its new name.
üst
95d97c73
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
28 additions
and
29 deletions
+28
-29
cmptree.py
Demo/pdist/cmptree.py
+1
-1
server.py
Demo/pdist/server.py
+1
-1
reprlib.rst
Doc/library/reprlib.rst
+3
-3
stdlib2.rst
Doc/tutorial/stdlib2.rst
+3
-3
bdb.py
Lib/bdb.py
+3
-3
copy.py
Lib/copy.py
+9
-10
Debugger.py
Lib/idlelib/Debugger.py
+2
-2
ObjectBrowser.py
Lib/idlelib/ObjectBrowser.py
+1
-1
pdb.py
Lib/pdb.py
+1
-1
pydoc.py
Lib/pydoc.py
+1
-1
test___all__.py
Lib/test/test___all__.py
+1
-1
test_repr.py
Lib/test/test_repr.py
+2
-2
No files found.
Demo/pdist/cmptree.py
Dosyayı görüntüle @
50a1acb2
"""Compare local and remote dictionaries and transfer differing files -- like rdist."""
"""Compare local and remote dictionaries and transfer differing files -- like rdist."""
import
sys
import
sys
from
repr
import
repr
from
repr
lib
import
repr
import
FSProxy
import
FSProxy
import
time
import
time
import
os
import
os
...
...
Demo/pdist/server.py
Dosyayı görüntüle @
50a1acb2
...
@@ -4,7 +4,7 @@ import sys
...
@@ -4,7 +4,7 @@ import sys
import
socket
import
socket
import
pickle
import
pickle
from
fnmatch
import
fnmatch
from
fnmatch
import
fnmatch
from
repr
import
repr
from
repr
lib
import
repr
# Default verbosity (0 = silent, 1 = print connections, 2 = print requests too)
# Default verbosity (0 = silent, 1 = print connections, 2 = print requests too)
...
...
Doc/library/repr.rst
→
Doc/library/repr
lib
.rst
Dosyayı görüntüle @
50a1acb2
:mod:`repr` --- Alternate :func:`repr` implementation
:mod:`repr
lib
` --- Alternate :func:`repr` implementation
=====================================================
=====================================================
.. module:: repr
.. module:: repr
lib
:synopsis: Alternate repr() implementation with size limits.
:synopsis: Alternate repr() implementation with size limits.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
The :mod:`repr` module provides a means for producing object representations
The :mod:`repr
lib
` module provides a means for producing object representations
with limits on the size of the resulting strings. This is used in the Python
with limits on the size of the resulting strings. This is used in the Python
debugger and may be useful in other contexts as well.
debugger and may be useful in other contexts as well.
...
...
Doc/tutorial/stdlib2.rst
Dosyayı görüntüle @
50a1acb2
...
@@ -13,11 +13,11 @@ programming needs. These modules rarely occur in small scripts.
...
@@ -13,11 +13,11 @@ programming needs. These modules rarely occur in small scripts.
Output Formatting
Output Formatting
=================
=================
The :mod:`repr` module provides a version of :func:`repr` customized for
The :mod:`repr
lib
` module provides a version of :func:`repr` customized for
abbreviated displays of large or deeply nested containers::
abbreviated displays of large or deeply nested containers::
>>> import repr
>>> import repr
lib
>>> repr.repr(set('supercalifragilisticexpialidocious'))
>>> repr
lib
.repr(set('supercalifragilisticexpialidocious'))
"set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
"set(['a', 'c', 'd', 'e', 'f', 'g', ...])"
The :mod:`pprint` module offers more sophisticated control over printing both
The :mod:`pprint` module offers more sophisticated control over printing both
...
...
Lib/bdb.py
Dosyayı görüntüle @
50a1acb2
...
@@ -325,7 +325,7 @@ class Bdb:
...
@@ -325,7 +325,7 @@ class Bdb:
#
#
def
format_stack_entry
(
self
,
frame_lineno
,
lprefix
=
': '
):
def
format_stack_entry
(
self
,
frame_lineno
,
lprefix
=
': '
):
import
linecache
,
repr
import
linecache
,
repr
lib
frame
,
lineno
=
frame_lineno
frame
,
lineno
=
frame_lineno
filename
=
self
.
canonic
(
frame
.
f_code
.
co_filename
)
filename
=
self
.
canonic
(
frame
.
f_code
.
co_filename
)
s
=
'
%
s(
%
r)'
%
(
filename
,
lineno
)
s
=
'
%
s(
%
r)'
%
(
filename
,
lineno
)
...
@@ -338,13 +338,13 @@ class Bdb:
...
@@ -338,13 +338,13 @@ class Bdb:
else
:
else
:
args
=
None
args
=
None
if
args
:
if
args
:
s
=
s
+
repr
.
repr
(
args
)
s
=
s
+
repr
lib
.
repr
(
args
)
else
:
else
:
s
=
s
+
'()'
s
=
s
+
'()'
if
'__return__'
in
frame
.
f_locals
:
if
'__return__'
in
frame
.
f_locals
:
rv
=
frame
.
f_locals
[
'__return__'
]
rv
=
frame
.
f_locals
[
'__return__'
]
s
=
s
+
'->'
s
=
s
+
'->'
s
=
s
+
repr
.
repr
(
rv
)
s
=
s
+
repr
lib
.
repr
(
rv
)
line
=
linecache
.
getline
(
filename
,
lineno
)
line
=
linecache
.
getline
(
filename
,
lineno
)
if
line
:
s
=
s
+
lprefix
+
line
.
strip
()
if
line
:
s
=
s
+
lprefix
+
line
.
strip
()
return
s
return
s
...
...
Lib/copy.py
Dosyayı görüntüle @
50a1acb2
...
@@ -399,17 +399,16 @@ def _test():
...
@@ -399,17 +399,16 @@ def _test():
print
l2
print
l2
l
.
append
({
l
[
1
]:
l
,
'xyz'
:
l
[
2
]})
l
.
append
({
l
[
1
]:
l
,
'xyz'
:
l
[
2
]})
l3
=
copy
(
l
)
l3
=
copy
(
l
)
import
repr
import
repr
lib
print
map
(
repr
.
repr
,
l
)
print
map
(
repr
lib
.
repr
,
l
)
print
map
(
repr
.
repr
,
l1
)
print
map
(
repr
lib
.
repr
,
l1
)
print
map
(
repr
.
repr
,
l2
)
print
map
(
repr
lib
.
repr
,
l2
)
print
map
(
repr
.
repr
,
l3
)
print
map
(
repr
lib
.
repr
,
l3
)
l3
=
deepcopy
(
l
)
l3
=
deepcopy
(
l
)
import
repr
print
map
(
reprlib
.
repr
,
l
)
print
map
(
repr
.
repr
,
l
)
print
map
(
reprlib
.
repr
,
l1
)
print
map
(
repr
.
repr
,
l1
)
print
map
(
reprlib
.
repr
,
l2
)
print
map
(
repr
.
repr
,
l2
)
print
map
(
reprlib
.
repr
,
l3
)
print
map
(
repr
.
repr
,
l3
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
_test
()
_test
()
Lib/idlelib/Debugger.py
Dosyayı görüntüle @
50a1acb2
...
@@ -413,8 +413,8 @@ class NamespaceViewer:
...
@@ -413,8 +413,8 @@ class NamespaceViewer:
height
=
20
*
len
(
dict
)
# XXX 20 == observed height of Entry widget
height
=
20
*
len
(
dict
)
# XXX 20 == observed height of Entry widget
self
.
master
=
master
self
.
master
=
master
self
.
title
=
title
self
.
title
=
title
import
repr
import
repr
lib
self
.
repr
=
repr
.
Repr
()
self
.
repr
=
repr
lib
.
Repr
()
self
.
repr
.
maxstring
=
60
self
.
repr
.
maxstring
=
60
self
.
repr
.
maxother
=
60
self
.
repr
.
maxother
=
60
self
.
frame
=
frame
=
Frame
(
master
)
self
.
frame
=
frame
=
Frame
(
master
)
...
...
Lib/idlelib/ObjectBrowser.py
Dosyayı görüntüle @
50a1acb2
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
from
TreeWidget
import
TreeItem
,
TreeNode
,
ScrolledCanvas
from
TreeWidget
import
TreeItem
,
TreeNode
,
ScrolledCanvas
from
repr
import
Repr
from
repr
lib
import
Repr
myrepr
=
Repr
()
myrepr
=
Repr
()
myrepr
.
maxstring
=
100
myrepr
.
maxstring
=
100
...
...
Lib/pdb.py
Dosyayı görüntüle @
50a1acb2
...
@@ -8,7 +8,7 @@ import sys
...
@@ -8,7 +8,7 @@ import sys
import
linecache
import
linecache
import
cmd
import
cmd
import
bdb
import
bdb
from
repr
import
Repr
from
repr
lib
import
Repr
import
os
import
os
import
re
import
re
import
pprint
import
pprint
...
...
Lib/pydoc.py
Dosyayı görüntüle @
50a1acb2
...
@@ -53,7 +53,7 @@ Richard Chamberlain, for the first implementation of textdoc.
...
@@ -53,7 +53,7 @@ Richard Chamberlain, for the first implementation of textdoc.
# path will be displayed.
# path will be displayed.
import
sys
,
imp
,
os
,
re
,
types
,
inspect
,
__builtin__
,
pkgutil
import
sys
,
imp
,
os
,
re
,
types
,
inspect
,
__builtin__
,
pkgutil
from
repr
import
Repr
from
repr
lib
import
Repr
from
string
import
expandtabs
,
find
,
join
,
lower
,
split
,
strip
,
rfind
,
rstrip
from
string
import
expandtabs
,
find
,
join
,
lower
,
split
,
strip
,
rfind
,
rstrip
try
:
try
:
from
collections
import
deque
from
collections
import
deque
...
...
Lib/test/test___all__.py
Dosyayı görüntüle @
50a1acb2
...
@@ -123,7 +123,7 @@ class AllTest(unittest.TestCase):
...
@@ -123,7 +123,7 @@ class AllTest(unittest.TestCase):
self
.
check_all
(
"quopri"
)
self
.
check_all
(
"quopri"
)
self
.
check_all
(
"random"
)
self
.
check_all
(
"random"
)
self
.
check_all
(
"re"
)
self
.
check_all
(
"re"
)
self
.
check_all
(
"repr"
)
self
.
check_all
(
"repr
lib
"
)
self
.
check_all
(
"rexec"
)
self
.
check_all
(
"rexec"
)
self
.
check_all
(
"rfc822"
)
self
.
check_all
(
"rfc822"
)
self
.
check_all
(
"rlcompleter"
)
self
.
check_all
(
"rlcompleter"
)
...
...
Lib/test/test_repr.py
Dosyayı görüntüle @
50a1acb2
...
@@ -9,8 +9,8 @@ import shutil
...
@@ -9,8 +9,8 @@ import shutil
import
unittest
import
unittest
from
test.test_support
import
run_unittest
from
test.test_support
import
run_unittest
from
repr
import
repr
as
r
# Don't shadow builtin repr
from
repr
lib
import
repr
as
r
# Don't shadow builtin repr
from
repr
import
Repr
from
repr
lib
import
Repr
def
nestedTuple
(
nesting
):
def
nestedTuple
(
nesting
):
...
...
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