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
81c5a905
Kaydet (Commit)
81c5a905
authored
Nis 29, 2019
tarafından
Marco Rougeth
Kaydeden (comit)
Brett Cannon
Nis 29, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36232: Improve error message on dbm.open() when the db doesn't exist (GH-12060)
üst
9bdd6d1c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
__init__.py
Lib/dbm/__init__.py
+2
-1
2019-03-20-15-13-18.bpo-36366.n0eav_.rst
...S.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst
+1
-1
2019-04-06-20-25-25.bpo-36232.SClmhb.rst
...S.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst
+2
-0
No files found.
Lib/dbm/__init__.py
Dosyayı görüntüle @
81c5a905
...
...
@@ -82,7 +82,8 @@ def open(file, flag='r', mode=0o666):
# file doesn't exist and the new flag was used so use default type
mod
=
_defaultmod
else
:
raise
error
[
0
](
"need 'c' or 'n' flag to open new db"
)
raise
error
[
0
](
"db file doesn't exist; "
"use 'c' or 'n' flag to create a new db"
)
elif
result
==
""
:
# db type cannot be determined
raise
error
[
0
](
"db type could not be determined"
)
...
...
Misc/NEWS.d/next/Library/2019-03-20-15-13-18.bpo-36366.n0eav_.rst
Dosyayı görüntüle @
81c5a905
Calling ``stop()`` on an unstarted or stopped :func:`unittest.mock.patch`
object will now return `None` instead of raising :exc:`RuntimeError`,
making the method idempotent.
Patch byKarthikeyan Singaravelan.
Patch by
Karthikeyan Singaravelan.
Misc/NEWS.d/next/Library/2019-04-06-20-25-25.bpo-36232.SClmhb.rst
0 → 100644
Dosyayı görüntüle @
81c5a905
Improve error message when trying to open existing DBM database that
actually doesn't exist. Patch by Marco Rougeth.
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