File: no-dbm.diff

package info (click to toggle)
python3-stdlib-extensions 3.11.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 28,020 kB
  • sloc: python: 134,527; ansic: 24,386; sh: 213; makefile: 190
file content (22 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- a/3.10/setup.py
+++ b/3.10/setup.py
@@ -549,7 +549,7 @@ class PyBuildExt(build_ext):
         # XXX Omitted modules: gl, pure, dl, SGI-specific modules
 
         # The standard Unix dbm module:
-        if True:
+        if False:
             dbm_order = "gdbm:ndbm:bdb".split(":")
             dbmext = None
             for cand in dbm_order:
--- a/3.11/setup.py
+++ b/3.11/setup.py
@@ -549,7 +549,7 @@ class PyBuildExt(build_ext):
         # XXX Omitted modules: gl, pure, dl, SGI-specific modules
 
         # The standard Unix dbm module:
-        if True:
+        if False:
             dbm_order = "gdbm:ndbm:bdb".split(":")
             dbmext = None
             for cand in dbm_order: