[issue21833] Fix unicodeless build of Python

2017-04-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> rejected stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue21833] Fix unicodeless build of Python

2015-04-14 Thread A.M. Kuchling
A.M. Kuchling added the comment: The subsequent discussion didn't arrive at a consensus. Most commenters wanted to drop --disable-unicode support and thought these patches were too extensive for 2.7, but Serhiy noted that running the tests with --disable-unicode turns up problems in the Unicod

[issue21833] Fix unicodeless build of Python

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue21833] Fix unicodeless build of Python

2014-06-29 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread STINNER Victor
STINNER Victor added the comment: IMO supporting building Python 2 without Unicode support should be discussed on the python-dev mailing list, it's not an innocent change. Python is moving strongly to Unicode: Python 3 uses Unicode by default. So to me it sounds really weird to work on buildin

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ned, I think you misunderstood Martin. He approved patch which fixes some disabled-unicode bugs. He noted that fixing a number of test failures has very low priority. This issue is about fixing the possibility of build Python and run test suite itself. And a

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Ned Deily
Ned Deily added the comment: Serhly, I admire you for all of the obvious effort you put into this but I can't help but think it is misplaced effort. My original comment was made before you submitted all of the other patches. As it stands, to proceed with this, there are now tens of thousands

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think the purpose of this option is similar to --without-doc-strings, this decreases the size of Python binary (-0.5 MB). Most needed changes are pretty trivial and they are only small fraction of already existing code for supporting --disable-unicode. --

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread STINNER Victor
STINNER Victor added the comment: I don't know anyone building Python without Unicode. I would prefer to modify configure to raise an error, and drop #ifdef in the code. -- ___ Python tracker _

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Ned Deily
Ned Deily added the comment: Note MvL's comment (msg161191 in Issue8767) about not fixing test cases for --disable-unicode here. This seems like a tremendous amount of code churn for a problem that has likely been around for years and would affect very few. How widely is --disable-unicode us

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Unicode nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21833] Fix unicodeless build of Python

2014-06-23 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Since 2.2 Python can be compiled without unicode support (built with --disable-unicode configure option). Unfortunately, testing suite depends on the io module, which in 2.7 depends on the _io module, which requires unicode support. So for now testing unic