File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 60
60
#
61
61
# This is also used if you do content translation via gettext catalogs.
62
62
# Usually you set "language" from the command line for these cases.
63
- language = None
63
+ language = 'en'
64
64
65
65
# List of patterns, relative to source directory, that match files and
66
66
# directories to ignore when looking for source files.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ In order to insert rows into such a table your application must create a Python
25
25
dict that corresponds to that schema, for example::
26
26
27
27
{'id': 1, 'name': 'myname', 'created': datetime.now(),
28
- 'address' : {'street' : '14 Elm Street', 'city' : " hometown',
28
+ 'address' : {'street' : '14 Elm Street', 'city' : ' hometown',
29
29
'zip' : 00000}}
30
30
31
31
Similarly, when operating on rows retrieved from the database it is important to
@@ -59,7 +59,7 @@ FixedBinary bytearray
59
59
Array list
60
60
Map dict
61
61
Record dict
62
- JSON any valid JSON
62
+ JSON any Python datatype that can be represented as JSON without data loss
63
63
============= ==============================
64
64
65
65
===================
You can’t perform that action at this time.
0 commit comments