From 0feb5749a079a1524054eff4da719b67e3ff401e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 28 Aug 2013 16:26:46 +0530 Subject: [PATCH] ... --- src/calibre/db/tables.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/calibre/db/tables.py b/src/calibre/db/tables.py index edb16d8e3a..00eeaa5a1d 100644 --- a/src/calibre/db/tables.py +++ b/src/calibre/db/tables.py @@ -41,9 +41,7 @@ def c_parse(val): ONE_ONE, MANY_ONE, MANY_MANY = xrange(3) -class Null: - pass -null = Null() +null = object() class Table(object):