I'm in.On Monday, 10 June 2013 15:40:14 UTC-3, Anand wrote:Hello everyone,I made some progress on migrating web.py to Python3. I'm able to run helloworld app both on Python2 and Python3 using the same codebase.helloworld program: https://gist.github.com/anandology/5751099I've tried to be very systematic about the migration. The important steps are:
1. covert all imports to relative imports2. replace print statement with print function3. fix exceptions4. fix unicode issuesOne thing that'll be useful is to fix the test suite. Anyone interested to take it up? The plan is not to add new tests, but convert the existing test suite to work with Python3. It'll useful to follow the above listed things first before others.Any takers?
What do I need to do? Fork web.py and ask for a merge?
Any hint I can use in migration process?
--
You received this message because you are subscribed to the Google Groups "web.py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to webpy+un...@googlegroups.com.
To post to this group, send email to we...@googlegroups.com.
Visit this group at http://groups.google.com/group/webpy?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
No, see test directory.Travis runs those tests whenever we make a push to github.Currently tests are passing for 2.6 and 2.7, but failing for 3.3. We need to fix that eventually.Anand
What i can do?We should also be improved using a tool documentation
Come on guys... No volunteer to help?
--
You received this message because you are subscribed to the Google Groups "web.py" group.
To unsubscribe from this group and stop receiving emails from it, send an email to webpy+un...@googlegroups.com.
To post to this group, send email to we...@googlegroups.com.
Visit this group at http://groups.google.com/group/webpy.
For more options, visit https://groups.google.com/groups/opt_out.
To unsubscribe from this group and stop receiving emails from it, send an email to webpy+unsubscribe@googlegroups.com.
To post to this group, send email to we...@googlegroups.com.
Visit this group at http://groups.google.com/group/webpy.
For more options, visit https://groups.google.com/groups/opt_out.
--
Josh Higgins
joshi...@gmail.com
Hi everyone. Long time lurker on the web.py list. I use web.py in a lot of projects and Tomas is correct... It's sad to see the project stalling.Over the next few days I will be working on Python 3 migration and porting the test units. I'm not quite sure who is leading the project but I can volunteer time and effort to push this forward.
Looking forward, the same code base cannot service both Python 2 and Python 3 development. So at some point the paths will diverge and we will need to maintain the old series and a new 3 series, with any important bugs backported.
Hi Tomas,
Do you have the port anywhere as a public repo? I can help with making tests compatible to both.