Commit a207a71e authored by Walter Dörwald's avatar Walter Dörwald

Follow PEP 8 in module docstring.

parent c8534884
...@@ -28,17 +28,17 @@ Generate Plist example: ...@@ -28,17 +28,17 @@ Generate Plist example:
pl = dict( pl = dict(
aString="Doodah", aString="Doodah",
aList=["A", "B", 12, 32.1, [1, 2, 3]], aList=["A", "B", 12, 32.1, [1, 2, 3]],
aFloat = 0.1, aFloat=0.1,
anInt = 728, anInt=728,
aDict=dict( aDict=dict(
anotherString="<hello & hi there!>", anotherString="<hello & hi there!>",
aUnicodeValue=u'M\xe4ssig, Ma\xdf', aUnicodeValue=u'M\xe4ssig, Ma\xdf',
aTrueValue=True, aTrueValue=True,
aFalseValue=False, aFalseValue=False,
), ),
someData = Data("<binary gunk>"), someData=Data("<binary gunk>"),
someMoreData = Data("<lots of binary gunk>" * 10), someMoreData=Data("<lots of binary gunk>" * 10),
aDate = datetime.datetime.fromtimestamp(time.mktime(time.gmtime())), aDate=datetime.datetime.fromtimestamp(time.mktime(time.gmtime())),
) )
# unicode keys are possible, but a little awkward to use: # unicode keys are possible, but a little awkward to use:
pl[u'\xc5benraa'] = "That was a unicode key." pl[u'\xc5benraa'] = "That was a unicode key."
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment