Lassi Vapaakallio

Results 4 comments of Lassi Vapaakallio

I went through the errors and fixed the ones I could. I have a commit in my fork that tries to fix the easiest changes, but had to comment out...

I responded to the comments in the commit. And made a new commit with Unicode checks: 3908b2bcc2ced2743ac6e5a04a598a85584a79b4 Yeah, compatibility with Python 2 and 3 would be ideal, but unfortunately that...

[Found another quick resource for porting](https://wiki.python.org/moin/Py3kExtensionModules)

``` module_obj = Py_InitModule(const_cast(PYEXT_MODULE), func_tbl); module_dict = PyModule_GetDict(module_obj); // borrowed reference ``` The replacement for this part in pybase.cpp is the thing that is crashing. And it is related to...