Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7.1, 0.7.2, and 0.7.3

shlib: force use of dumbdbm for shelve db operations

This is just a shot-in-the-dark workaround for issue #50.
I'm guessing bsddbm is barfing on non-ASCII file names on
Windows and that the pure python implementation will be more
robust. We don't care much about performance here, as these
files are tiny.

Changeset 82dbf1e050af

Parent fd9dd7993bf8

by Steve Borho

Changes to one file · Browse files at 82dbf1e050af Showing diff from parent fd9dd7993bf8 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​shlib.py Stacked
 
7
8
9
 
 
 
10
11
12
 
7
8
9
10
11
12
13
14
15
@@ -7,6 +7,9 @@
   """   +import dumbdbm, anydbm +anydbm._defaultmod = dumbdbm +  import os  import gtk  import shelve