Skip to content

Commit

Permalink
remove spam
Browse files Browse the repository at this point in the history
  • Loading branch information
hughperkins committed Mar 17, 2016
1 parent fef42dd commit cbc1afd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 190 deletions.
195 changes: 7 additions & 188 deletions src/lua.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/lua.jinja2.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ cdef class LuaState(object):
def pcall(self, int numIn, int numOut, errFunc=0):
res = []
interruptableCall(self._pcall, [res, numIn, numOut, errFunc])
print('res[0]', res[0])
# print('res[0]', res[0])
return res[0]

def newTable(self):
Expand Down
2 changes: 1 addition & 1 deletion src/lua.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ cdef class LuaState(object):
def pcall(self, int numIn, int numOut, errFunc=0):
res = []
interruptableCall(self._pcall, [res, numIn, numOut, errFunc])
print('res[0]', res[0])
# print('res[0]', res[0])
return res[0]

def newTable(self):
Expand Down

0 comments on commit cbc1afd

Please sign in to comment.