PEP8格式规范.
urlpatterns = patterns("", url(r"^$", listing, name="investment-listing"))
or not putting any arguments on the starting line, then indenting to a uniform level:
urlpatterns = patterns( "",
url(r"^$", listing, name="investment-listing"),
)
urlpatterns = patterns(
"", url(r"^$", listing, name="investment-listing"))
I suggest taking a read through PEP-8 - it"s not a long document, and it"s pretty easy to understand, unlike some of the more technical PEPs.
以上是 PEP8格式规范. 的全部内容, 来源链接: utcz.com/z/513488.html