[issue19083] IDNA prefix should be case insensitive

2021-05-22 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.10, Python 3.11 -Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list

[issue19083] IDNA prefix should be case insensitive

2020-01-15 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19083] IDNA prefix should be case insensitive

2019-12-27 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.4 ___ Python tracker ___ __

[issue19083] IDNA prefix should be case insensitive

2019-12-27 Thread Zackery Spytz
Change by Zackery Spytz : -- pull_requests: +17170 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17726 ___ Python tracker ___ ___

[issue19083] IDNA prefix should be case insensitive

2013-09-26 Thread Pepijn de Vos
Pepijn de Vos added the comment: Ok, I signed the agreement and included a few more tests. -- Added file: http://bugs.python.org/file31878/upper-idna.patch ___ Python tracker ___

[issue19083] IDNA prefix should be case insensitive

2013-09-26 Thread STINNER Victor
STINNER Victor added the comment: Could you also add a test using a IDNA domain not starting with XN--, but with XN-- in the middle? Example: self.assertEqual(str(b"bugs.XN--pythn-mua.org.", "idna"), "bugs.pyth\xf6n.org.") And maybe also with mixed cases: Xn-- and xN-- prefixes. -- _

[issue19083] IDNA prefix should be case insensitive

2013-09-26 Thread Martin v . Löwis
Martin v. Löwis added the comment: Pepijn: Can you please submit the contributor form? http://www.python.org/psf/contrib/contrib-form/ -- ___ Python tracker ___

[issue19083] IDNA prefix should be case insensitive

2013-09-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +haypo, loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19083] IDNA prefix should be case insensitive

2013-09-25 Thread Berker Peksag
Changes by Berker Peksag : -- versions: +Python 3.4 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19083] IDNA prefix should be case insensitive

2013-09-24 Thread Pepijn de Vos
New submission from Pepijn de Vos: RFC 3490 states that "The ACE prefix for IDNA is "xn--" or any capitalization thereof." But the following does not work >>> str(b"XN--pythn-mua.org.", "idna") -- components: Library (Lib) files: upper-idna.patch keywords: patch messages: 198360 nosy: