[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-12-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 55b94462ca7f by Brett Cannon in branch '3.4': Issue #22914: Update the Python 2/3 porting HOWTO to describe a more https://hg.python.org/cpython/rev/55b94462ca7f -- nosy: +python-dev ___ Python tracker

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-12-05 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22914 ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-12-05 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- stage: patch review - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22914 ___ ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-12-02 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22914 ___ ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-28 Thread Brett Cannon
Brett Cannon added the comment: I addressed Serhiy's comments and added in some bits that I initially took off (-bb, -3, str.__mod__, io.open). Also clarified a couple of things. -- Added file: http://bugs.python.org/file37305/pyporting.diff ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-22 Thread Brett Cannon
Brett Cannon added the comment: I removed a bunch of sections for two reasons. One is they are redundant. If you follow the HOWTO and actually read What's New then you will get a bunch of those same details anyway. The tools will also handle the details for you and so you really don't have to

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-21 Thread Brett Cannon
New submission from Brett Cannon: This is a rewrite of the Python 2/3 porting HOWTO to describe how to make code be compatible with both Python 2 3. To see it rendered for easier reading, see https://gist.github.com/brettcannon/91ff264ae549315706f6 -- assignee: brett.cannon

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-21 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- stage: - patch review type: - enhancement ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22914 ___

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-21 Thread Barry A. Warsaw
Changes by Barry A. Warsaw ba...@python.org: -- nosy: +barry ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22914 ___ ___ Python-bugs-list mailing

[issue22914] Rewrite of Python 2/3 porting HOWTO

2014-11-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Why you have removed many sections: about subclassing from object, using io classes, comparison of bytes with unicode objects, the use of warnings and -b and -3 options and other subtle details? -- nosy: +serhiy.storchaka