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
865ea892
Kaydet (Commit)
865ea892
authored
Agu 22, 2007
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix raise statements in hotshot.
üst
e405037a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
log.py
Lib/hotshot/log.py
+4
-4
stats.py
Lib/hotshot/stats.py
+1
-1
No files found.
Lib/hotshot/log.py
Dosyayı görüntüle @
865ea892
...
...
@@ -70,7 +70,7 @@ class LogReader:
try
:
return
self
.
_filemap
[
fileno
]
except
KeyError
:
raise
ValueError
,
"unknown fileno"
raise
ValueError
(
"unknown fileno"
)
def
get_filenames
(
self
):
return
self
.
_filemap
.
values
()
...
...
@@ -80,13 +80,13 @@ class LogReader:
for
fileno
,
name
in
self
.
_filemap
.
items
():
if
name
==
filename
:
return
fileno
raise
ValueError
,
"unknown filename"
raise
ValueError
(
"unknown filename"
)
def
get_funcname
(
self
,
fileno
,
lineno
):
try
:
return
self
.
_funcmap
[(
fileno
,
lineno
)]
except
KeyError
:
raise
ValueError
,
"unknown function location"
raise
ValueError
(
"unknown function location"
)
# Iteration support:
# This adds an optional (& ignored) parameter to next() so that the
...
...
@@ -127,7 +127,7 @@ class LogReader:
self
.
cwd
=
lineno
self
.
addinfo
(
tdelta
,
lineno
)
else
:
raise
ValueError
,
"unknown event type"
raise
ValueError
(
"unknown event type"
)
def
__iter__
(
self
):
return
self
...
...
Lib/hotshot/stats.py
Dosyayı görüntüle @
865ea892
...
...
@@ -90,4 +90,4 @@ class FakeFrame:
def
_brokentimer
():
raise
RuntimeError
,
"this timer should not be called"
raise
RuntimeError
(
"this timer should not be called"
)
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