[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue34752] warnings.warn fails silently with unicode input

2021-01-01 Thread Zackery Spytz
Zackery Spytz added the comment: Python 2.7 is no longer supported, so I think this issue should be closed. -- nosy: +ZackerySpytz ___ Python tracker ___

[issue34752] warnings.warn fails silently with unicode input

2018-09-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Since Nick had some issue on adding a message to the issue I am adding the email sent to me as a message below : (sorry I can't see how to post a reply message on the bugs page, I'm still new to this) anyhow here's what I wanted to post:

[issue34752] warnings.warn fails silently with unicode input

2018-09-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I looked some more into the linked issue and I think this is an explicit decision and the comment in the code indicates that the warning will be lost :

[issue34752] warnings.warn fails silently with unicode input

2018-09-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I think this a known limitation as per https://bugs.python.org/issue23637#msg239361 where non-ASCII characters would require byte string. I couldn't find the relevant documentation for it though. $ ./python.exe Python 2.7.15+

[issue34752] warnings.warn fails silently with unicode input

2018-09-20 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34752] warnings.warn fails silently with unicode input

2018-09-20 Thread Nicholas Parslow
New submission from Nicholas Parslow : example: Python 2.7.14 |Anaconda, Inc.| (default, Dec 7 2017, 17:05:42) [GCC 7.2.0] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import warnings >>> warnings.warn(u'blé') >>> warnings.warn('blah') __main__:1: