[issue4618] print_function and unicode_literals don't work together

2009-07-02 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r73776. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue4618] print_function and unicode_literals don't work together

2009-05-30 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue4618] print_function and unicode_literals don't work together

2009-05-30 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- priority: -> high stage: -> needs patch type: -> behavior versions: +Python 2.7 ___ Python tracker ___ __

[issue4618] print_function and unicode_literals don't work together

2009-05-29 Thread John Szakmeister
Changes by John Szakmeister : -- nosy: +jszakmeister ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue4618] print_function and unicode_literals don't work together

2008-12-10 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: The TypeError("can't write str to text stream") comes from the newline written by builtin_print(). Workaround: print(u"foo", end=u"\n", file=StringIO()). -- nosy: +haypo ___ Python tracker <[EMAI

[issue4618] print_function and unicode_literals don't work together

2008-12-10 Thread Jean-Paul Calderone
New submission from Jean-Paul Calderone <[EMAIL PROTECTED]>: Consider: [EMAIL PROTECTED]:~$ ~/Projects/python/branches/release26-maint/python Python 2.6+ (trunk:66997, Oct 23 2008, 16:02:09) [GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2 Type "help", "copyright", "credits" or "license" for more