File: no-dbm.diff

package info (click to toggle)
python3-stdlib-extensions 3.13.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 32,060 kB
  • sloc: python: 143,054; ansic: 66,791; makefile: 314; sh: 149
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: