Re: [PATCH 0/8] Initial support for Python 3

2013-01-13 Thread John Keeping
On Sun, Jan 13, 2013 at 11:40:45AM -0500, Pete Wyckoff wrote: > j...@keeping.me.uk wrote on Sun, 13 Jan 2013 00:41 +: >> On Sat, Jan 12, 2013 at 06:43:04PM -0500, Pete Wyckoff wrote: >> > Can you give me some hints about the byte/unicode string issues >> > in git-p4.py? There's really only one

Re: [PATCH 0/8] Initial support for Python 3

2013-01-13 Thread Pete Wyckoff
j...@keeping.me.uk wrote on Sun, 13 Jan 2013 00:41 +: > On Sat, Jan 12, 2013 at 06:43:04PM -0500, Pete Wyckoff wrote: > > Can you give me some hints about the byte/unicode string issues > > in git-p4.py? There's really only one place that does: > > > > p4 = subprocess.Popen("p4 -G ...") >

Re: [PATCH 0/8] Initial support for Python 3

2013-01-13 Thread John Keeping
On Sun, Jan 13, 2013 at 12:41:30AM +, John Keeping wrote: > On Sat, Jan 12, 2013 at 06:43:04PM -0500, Pete Wyckoff wrote: >> Can you give me some hints about the byte/unicode string issues >> in git-p4.py? There's really only one place that does: >> >> p4 = subprocess.Popen("p4 -G ...") >

Re: [PATCH 0/8] Initial support for Python 3

2013-01-12 Thread John Keeping
On Sat, Jan 12, 2013 at 06:43:04PM -0500, Pete Wyckoff wrote: > j...@keeping.me.uk wrote on Sat, 12 Jan 2013 19:23 +: >> I started having a look to see how much work would be needed to make Git >> work with Python 3 and the answer is mostly not much. The exception is >> git-p4.py which is hit

Re: [PATCH 0/8] Initial support for Python 3

2013-01-12 Thread Pete Wyckoff
j...@keeping.me.uk wrote on Sat, 12 Jan 2013 19:23 +: > I started having a look to see how much work would be needed to make Git > work with Python 3 and the answer is mostly not much. The exception is > git-p4.py which is hit hard by the distinction between byte strings and > unicode strings,