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
93cf79fd
Kaydet (Commit)
93cf79fd
authored
Mar 31, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use docstrings for exception classes
üst
f74e46cf
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
bdb.py
Lib/bdb.py
+2
-1
macpath.py
Lib/macpath.py
+2
-1
No files found.
Lib/bdb.py
Dosyayı görüntüle @
93cf79fd
...
...
@@ -6,7 +6,8 @@ import types
__all__
=
[
"BdbQuit"
,
"Bdb"
,
"Breakpoint"
]
class
BdbQuit
(
Exception
):
pass
class
BdbQuit
(
Exception
):
"""Exception to give up completely"""
class
Bdb
:
...
...
Lib/macpath.py
Dosyayı görüntüle @
93cf79fd
...
...
@@ -170,7 +170,8 @@ def expanduser(path):
"""Dummy to retain interface-compatibility with other operating systems."""
return
path
class
norm_error
(
Exception
):
pass
class
norm_error
(
Exception
):
"""Path cannot be normalized"""
def
normpath
(
s
):
"""Normalize a pathname. Will return the same result for
...
...
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