Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using Mac os X 10.6, python 3.1 and gcc 4.0 trying to build pyfsevent implemented in python2.6 by converting it to python 3.1.

Wondering when getting the following errors while building in python 3.1 alone.

Why not when building with python 2.6?

error: syntax error before ‘CFFileDescriptorRef’

warning: no semicolon at end of struct or union

error: syntax error before ‘}’ token

warning: data definition has no type or storage class
share|improve this question
4  
Please show the code. – notnoop May 3 '10 at 12:25

1 Answer

The C code does not get converted when running 2to3, you need to port it manually.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.