We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c0871 commit 34e6e64Copy full SHA for 34e6e64
.github/workflows/test-python.yml
@@ -71,6 +71,7 @@ jobs:
71
empty
72
from_db_value
73
lookup.tests.LookupTests.test_escaping
74
+ model_fields.test_binaryfield
75
model_fields.test_datetimefield
76
model_fields.test_decimalfield
77
model_fields.test_charfield
django_mongodb/dbapi.py
@@ -1,3 +1,6 @@
1
+from bson import Binary # noqa: F401
2
+
3
4
class Error(Exception):
5
pass
6
@@ -32,7 +35,3 @@ class ProgrammingError(DatabaseError):
32
35
33
36
class NotSupportedError(DatabaseError):
34
37
-
-def Binary(value):
38
- return value
0 commit comments