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
b248e957
Unverified
Kaydet (Commit)
b248e957
authored
Haz 20, 2018
tarafından
Xiang Zhang
Kaydeden (comit)
GitHub
Haz 20, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix compiling error when missing gdbm version macros (GH-7823)
üst
16eb3bcd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
pythoninfo.py
Lib/test/pythoninfo.py
+2
-2
test_dbm_gnu.py
Lib/test/test_dbm_gnu.py
+2
-3
_gdbmmodule.c
Modules/_gdbmmodule.c
+3
-0
No files found.
Lib/test/pythoninfo.py
Dosyayı görüntüle @
b248e957
...
...
@@ -527,11 +527,11 @@ def collect_cc(info_add):
def
collect_gdbm
(
info_add
):
try
:
import
_gdbm
from
_gdbm
import
_GDBM_VERSION
except
ImportError
:
return
info_add
(
'gdbm.GDBM_VERSION'
,
'.'
.
join
(
map
(
str
,
_
gdbm
.
_
GDBM_VERSION
)))
info_add
(
'gdbm.GDBM_VERSION'
,
'.'
.
join
(
map
(
str
,
_GDBM_VERSION
)))
def
collect_info
(
info
):
...
...
Lib/test/test_dbm_gnu.py
Dosyayı görüntüle @
b248e957
...
...
@@ -12,9 +12,8 @@ class TestGdbm(unittest.TestCase):
def
setUpClass
():
if
support
.
verbose
:
try
:
import
_gdbm
version
=
_gdbm
.
_GDBM_VERSION
except
(
ImportError
,
AttributeError
):
from
_gdbm
import
_GDBM_VERSION
as
version
except
ImportError
:
pass
else
:
print
(
f
"gdbm version: {version}"
)
...
...
Modules/_gdbmmodule.c
Dosyayı görüntüle @
b248e957
...
...
@@ -678,6 +678,8 @@ PyInit__gdbm(void) {
goto
error
;
}
#if defined(GDBM_VERSION_MAJOR) && defined(GDBM_VERSION_MINOR) && \
defined(GDBM_VERSION_PATCH)
PyObject
*
obj
=
Py_BuildValue
(
"iii"
,
GDBM_VERSION_MAJOR
,
GDBM_VERSION_MINOR
,
GDBM_VERSION_PATCH
);
if
(
obj
==
NULL
)
{
...
...
@@ -687,6 +689,7 @@ PyInit__gdbm(void) {
Py_DECREF
(
obj
);
goto
error
;
}
#endif
return
m
;
...
...
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