Cosmetic changes to fix Cython warnings

Put declarations on separate line to avoid warnings like this:

  Non-trivial type declarators in shared declaration (e.g. mix
  of pointers and values). Each pointer declaration should be
  on its own line.
This commit is contained in:
Wouter Bolsterlee 2014-02-11 21:05:15 +01:00
parent d5436c2819
commit dd65341e0d

View file

@ -221,7 +221,8 @@ cdef class Unpacker(object):
object object_hook=None, object object_pairs_hook=None, object list_hook=None,
str encoding=None, str unicode_errors='strict', int max_buffer_size=0,
object ext_hook=ExtType):
cdef char *cenc=NULL, *cerr=NULL
cdef char *cenc=NULL,
cdef char *cerr=NULL
self.file_like = file_like
if file_like: