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
e03a86c3
Kaydet (Commit)
e03a86c3
authored
Agu 11, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
change default flag to match dbm/gdbm
üst
1035a892
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
anydbm.py
Lib/anydbm.py
+3
-3
No files found.
Lib/anydbm.py
Dosyayı görüntüle @
e03a86c3
...
...
@@ -31,8 +31,8 @@ decide which module to use based upon the extension or contents of an
existing database file.
The open function has an optional second argument. This can be set to
'r' to open the database for reading only. The default is '
w', which
differs from the dbm default ('r') for historic reasons
.
'r' to open the database for reading only. The default is '
r', like
the dbm default
.
"""
...
...
@@ -47,5 +47,5 @@ for _name in _names:
break
else
:
raise
ImportError
,
"no dbm clone found; tried
%
s"
%
_names
def
open
(
file
,
flag
=
'
w
'
,
mode
=
0666
):
def
open
(
file
,
flag
=
'
r
'
,
mode
=
0666
):
return
_mod
.
open
(
file
,
flag
,
mode
)
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