27 lines
887 B
Diff
27 lines
887 B
Diff
From abf66be2ae71fb1d82481118f77d9390126b027d Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Thu, 17 Jun 2021 18:52:15 +0530
|
|
Subject: [PATCH 049/N] disable broken gdbm module
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Co-authored-by: Алексей <alexey.pawlow@gmail.com>
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index ad9c96d..a1fa4d8 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1227,7 +1227,7 @@ def detect_dbm_gdbm(self):
|
|
if dbm_args:
|
|
dbm_order = [arg.split('=')[-1] for arg in dbm_args][-1].split(":")
|
|
else:
|
|
- dbm_order = "gdbm:ndbm:bdb".split(":")
|
|
+ dbm_order = []
|
|
dbmext = None
|
|
for cand in dbm_order:
|
|
if cand == "ndbm":
|