From: Walter Dörwald Date: Mon, 21 Jan 2008 20:18:04 +0000 (+0000) Subject: Follow PEP 8 in module docstring. X-Git-Tag: v2.6a1~473 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4a11a06d12aa328164b3aa58860faec929ba60b0;p=thirdparty%2FPython%2Fcpython.git Follow PEP 8 in module docstring. --- diff --git a/Lib/plistlib.py b/Lib/plistlib.py index 5e107b6633e4..0ce533333430 100644 --- a/Lib/plistlib.py +++ b/Lib/plistlib.py @@ -28,17 +28,17 @@ Generate Plist example: pl = dict( aString="Doodah", aList=["A", "B", 12, 32.1, [1, 2, 3]], - aFloat = 0.1, - anInt = 728, + aFloat=0.1, + anInt=728, aDict=dict( anotherString="", aUnicodeValue=u'M\xe4ssig, Ma\xdf', aTrueValue=True, aFalseValue=False, ), - someData = Data(""), - someMoreData = Data("" * 10), - aDate = datetime.datetime.fromtimestamp(time.mktime(time.gmtime())), + someData=Data(""), + someMoreData=Data("" * 10), + aDate=datetime.datetime.fromtimestamp(time.mktime(time.gmtime())), ) # unicode keys are possible, but a little awkward to use: pl[u'\xc5benraa'] = "That was a unicode key."