Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Mar 28, 2016
1 parent 27e060c commit 63b03b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cython/CodeWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DeclarationWriter(TreeVisitor):

indent_string = u" "

def __init__(self, result = None):
def __init__(self, result=None):
super(DeclarationWriter, self).__init__()
if result is None:
result = LinesResult()
Expand All @@ -51,7 +51,7 @@ def indent(self):
def dedent(self):
self.numindents -= 1

def startline(self, s = u""):
def startline(self, s=u""):
self.result.put(self.indent_string * self.numindents + s)

def put(self, s):
Expand All @@ -60,7 +60,7 @@ def put(self, s):
def putline(self, s):
self.result.putline(self.indent_string * self.numindents + s)

def endline(self, s = u""):
def endline(self, s=u""):
self.result.putline(s)

def line(self, s):
Expand Down

0 comments on commit 63b03b5

Please sign in to comment.