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
0503de9c
Kaydet (Commit)
0503de9c
authored
Mar 30, 2013
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#17526: merge with 3.3.
üst
8c0fc15c
1b145927
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
inspect.py
Lib/inspect.py
+1
-1
test_inspect.py
Lib/test/test_inspect.py
+6
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/inspect.py
Dosyayı görüntüle @
0503de9c
...
...
@@ -550,7 +550,7 @@ def findsource(object):
file
=
getfile
(
object
)
sourcefile
=
getsourcefile
(
object
)
if
not
sourcefile
and
file
[
0
]
+
file
[
-
1
]
!=
'<>'
:
if
not
sourcefile
and
file
[
:
1
]
+
file
[
-
1
:
]
!=
'<>'
:
raise
OSError
(
'source code not available'
)
file
=
sourcefile
if
sourcefile
else
file
...
...
Lib/test/test_inspect.py
Dosyayı görüntüle @
0503de9c
...
...
@@ -416,6 +416,12 @@ class TestBuggyCases(GetSourceBase):
finally
:
del
linecache
.
cache
[
co
.
co_filename
]
def
test_findsource_without_filename
(
self
):
for
fname
in
[
''
,
'<string>'
]:
co
=
compile
(
'x=1'
,
fname
,
"exec"
)
self
.
assertRaises
(
IOError
,
inspect
.
findsource
,
co
)
self
.
assertRaises
(
IOError
,
inspect
.
getsource
,
co
)
class
TestNoEOL
(
GetSourceBase
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
self
.
tempdir
=
TESTFN
+
'_dir'
...
...
Misc/NEWS
Dosyayı görüntüle @
0503de9c
...
...
@@ -297,6 +297,9 @@ Core and Builtins
Library
-------
- Issue #17526: fix an IndexError raised while passing code without filename to
inspect.findsource(). Initial patch by Tyler Doyle.
- Issue #17540: Added style to formatter configuration by dict.
- Issue #16692: The ssl module now supports TLS 1.1 and TLS 1.2. Initial
...
...
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