jstacoder / flask-xxl

A best practices approach to creating large web apps, which gives the ease and power of django to your flask app
387 stars 21 forks source link

python 3.x (3.5) compatibility #13

Open tyler274 opened 8 years ago

tyler274 commented 8 years ago

Lot's of prints without parenthesis for example which cause issues. also dependencies which are part of the standard library and shouldn't need to be declared (argparse, wsgiref.)

jstacoder commented 8 years ago

the requirements.txt file is autogenerated by pip, im not personally using argparse and wsgiref in my code, but i think libraries i am using need them, and i guess, i should start using print as a function, i cant hide from the future much longer, i guess its time to start working on py3x compatibility

tyler274 commented 8 years ago

Thanks.