Issue1758320

classification
Title: stringprep module missing
Type: Severity: normal
Components: Library Versions:
Milestone:
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: cgroves, fwierzbicki, pjenvey, zyasoft
Priority: low Keywords: test failure causes

Created on 2007-07-22.04:45:06 by cgroves, last changed 2014-06-19.07:08:53 by zyasoft.

Messages
msg1776 (view) Author: Charlie Groves (cgroves) Date: 2007-07-22.04:45:06
The stringprep module from CPython isn't present in Jython, and this causes a failure in test_codecs
msg1777 (view) Author: Charlie Groves (cgroves) Date: 2007-08-06.00:04:53
See http://wiki.python.org/jython/JythonDeveloperGuide/VersionTransitionTestExclusions for how to get the test running again to fix this.
msg3147 (view) Author: Philip Jenvey (pjenvey) Date: 2008-04-10.00:39:22
all stringprep needs is unicodedata
msg3447 (view) Author: Philip Jenvey (pjenvey) Date: 2008-08-23.00:56:40
Too be more specific, not only does stringprep require unicodedata, it 
requires unicodedata's 3.2.0 database:

from unicodedata import ucd_3_2_0 as unicodedata
msg8735 (view) Author: Jim Baker (zyasoft) Date: 2014-06-19.07:08:53
I don't see us implementing stringprep - it's really just a step to get to idna, which we now have full support for.
History
Date User Action Args
2014-06-19 07:08:53zyasoftsetstatus: open -> closed
resolution: wont fix
messages: + msg8735
nosy: + zyasoft
2013-02-26 18:50:50fwierzbickisetnosy: + fwierzbicki
2009-03-14 03:00:45fwierzbickisetpriority: normal -> low
2008-12-15 16:08:40fwierzbickisetcomponents: + Library, - None
2008-08-23 00:56:41pjenveysetmessages: + msg3447
2008-04-10 00:39:22pjenveysetnosy: + pjenvey
messages: + msg3147
2007-07-22 04:45:06cgrovescreate