PyDev 3.6.0 Released

2014-06-24 Thread Fabio Zadrozny
What is PyDev? --- PyDev is an open-source Python IDE on top of Eclipse for Python, Jython and IronPython development. It comes with goodies such as code completion, syntax highlighting, syntax analysis, code analysis, refactor, debug, interactive console, etc. Details

Re: python 3.44 float addition bug?

2014-06-24 Thread Steven D'Aprano
On Mon, 23 Jun 2014 17:55:50 -0700, buck wrote: It used to be that the best way to compare floating point numbers while disregarding the inherent epsilon was to use `str(x) == str(y)`. It looks like that workaround doesn't work anymore in 3.4. What inherent epsilon? Can you explain what you

Re: Adding thread module support to Ubuntu 3 for Python3

2014-06-24 Thread alister
On Mon, 23 Jun 2014 19:40:24 -0700, Larry Hudson wrote: On 06/23/2014 01:12 PM, kenak...@gmail.com wrote: What package do I need to install to get thread support (import thread) for Python 3 running under ubuntu 3? Just curious... Ubuntu 3 -- Are you really running a version that old, or

What is the state of MySQL support for Python 3?

2014-06-24 Thread haizaar
Good day, I'm starting a new project from scratch so I think its finally a time to switch to the latest and greatest Python 3.4. But I'm puzzled with MySQL support for Python 3. So far the only stable library I've found it pymysql. All others are either abandoned work-in-progress projects or

Format String: Only when value supplied

2014-06-24 Thread Florian Lindner
Hello, I have a format string like: print {:10} {:25} = {:6} ({}).format(mod, name, value, description) description can be None. In this case I want to print an empty string (which can be achieved by replacing it with 'description or ') and I want to omit the brackets. Is there a way to

Re: What is the state of MySQL support for Python 3?

2014-06-24 Thread Bernd Nawothnig
On 2014-06-24, haiz...@gmail.com wrote: I'm starting a new project from scratch so I think its finally a time to switch to the latest and greatest Python 3.4. But I'm puzzled with MySQL support for Python 3. So far the only stable library I've found it pymysql. All others are either

Re: What is the state of MySQL support for Python 3?

2014-06-24 Thread Chris Angelico
On Tue, Jun 24, 2014 at 6:21 PM, haiz...@gmail.com wrote: I'm starting a new project from scratch so I think its finally a time to switch to the latest and greatest Python 3.4. But I'm puzzled with MySQL support for Python 3. Is it completely from scratch? Can you just use PostgreSQL? It's

OPENPYXL

2014-06-24 Thread xristoniki
OPENPYXL_problem. Hello, i design a gui using wxpython! I want to read and edit excel files so i use the openpyxl library! But i want to delete specific columns and rows and i cant do it. In addition i want to sort columns by cell color and i cant do that either! Do you have any ideas?

Re: Format String: Only when value supplied

2014-06-24 Thread Ned Batchelder
On 6/24/14 5:18 AM, Florian Lindner wrote: Hello, I have a format string like: print {:10} {:25} = {:6} ({}).format(mod, name, value, description) description can be None. In this case I want to print an empty string (which can be achieved by replacing it with 'description or ') and I

Re: What is the state of MySQL support for Python 3?

2014-06-24 Thread haizaar
On Tuesday, June 24, 2014 12:48:14 PM UTC+3, Chris Angelico wrote: Is it completely from scratch? Can you just use PostgreSQL? It's *so* much better... The project is, but the database isn't. So MySQL it is. -- https://mail.python.org/mailman/listinfo/python-list

Re: Format String: Only when value supplied

2014-06-24 Thread MRAB
On 2014-06-24 10:18, Florian Lindner wrote: Hello, I have a format string like: print {:10} {:25} = {:6} ({}).format(mod, name, value, description) description can be None. In this case I want to print an empty string (which can be achieved by replacing it with 'description or ') and I

Re: Off-Topic: The Machine

2014-06-24 Thread Johannes Bauer
On 24.06.2014 03:23, Steven D'Aprano wrote: http://www.iflscience.com/technology/new-type-computer-capable- calculating-640tbs-data-one-billionth-second-could Relevance: The Machine uses *eighty times less power* for the same amount of computing power as conventional architectures. If they

Standard way to generate mail/news reply?

2014-06-24 Thread Adam Funk
Is there some standard library or code for taking an e-mail or newsgroup message generating a reply to it? (I mean things like quoting the original message, quoting etc. where necessary, generating the right References In-Reply-To headers.) I homebrewed some code for this in Perl (sorry)

Re: Standard way to generate mail/news reply?

2014-06-24 Thread Skip Montanaro
On Tue, Jun 24, 2014 at 6:46 AM, Adam Funk a24...@ducksburg.com wrote: Is there some standard library or code for taking an e-mail or newsgroup message generating a reply to it? You might try searching for mail reply on pypi.python.org. That will return a number of hits. I know the python.org

Re: What is the state of MySQL support for Python 3?

2014-06-24 Thread INADA Naoki
Hi. PyMySQL -- pure Python MySQL connector. Supports Python 3.3~. mysqlclient -- Fork of MySQLdb. Supports Python 3.3~. On Tue, Jun 24, 2014 at 5:21 PM, haiz...@gmail.com wrote: Good day, I'm starting a new project from scratch so I think its finally a time to switch to the latest and

Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabien
Hi, this is probably not the best place for this topic but I know this forum is widely read. I take this opportunity and apology at the same time. If I run this in my python3 interpreter everything works fine: mowglie@flappi ~ $ python3 Python 3.3.2+ (default, Feb 28 2014, 00:52:16) [GCC

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Chris Angelico
On Tue, Jun 24, 2014 at 11:28 PM, Fabien fabien.mauss...@gmail.com wrote: So they are two instances of the same object but something in pyDev doesn't want to compare them. Any Hint? Are they really instances of the same class? One of them comes from

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabien
Hi Chris, thanks for the hint. Indeed they are not an instance of the same class: isinstance(d1, datetime) Out[6]: False isinstance(d2, datetime) Out[7]: True so this is something I should check with the NetCDF4 package developers. While The python interpreter can compare them, my pydev

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Chris Angelico
On Tue, Jun 24, 2014 at 11:59 PM, Fabien fabien.mauss...@gmail.com wrote: Hi Chris, thanks for the hint. Indeed they are not an instance of the same class: isinstance(d1, datetime) Out[6]: False isinstance(d2, datetime) Out[7]: True so this is something I should check with the NetCDF4

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabio Zadrozny
Well, it 'appears' to be the same type, but given that the File from one is different from the other, I think they aren't... Googling a bit, I found the source: https://code.google.com/p/netcdf4-python/source/browse/trunk/netcdftime.py?r=1117 and it has a 'datetime' which says: Phony datetime

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabien
Hi Chris, On 24.06.2014 16:04, Chris Angelico wrote: Here's what I'd try: import sys sys.modules[d1.__class__.__module__].__file__ sys.modules[d2.__class__.__module__].__file__ that was it! netCDF4 has two repositories online, one on google code and one on github. I mistakenly installed

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Chris Angelico
On Wed, Jun 25, 2014 at 12:27 AM, Fabien fabien.mauss...@gmail.com wrote: netCDF4 has two repositories online, one on google code and one on github. I mistakenly installed the old one, then I noticed the new one and obviously some old stuffs remained in the dist-packages directory. I removed

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Fabien
On 24.06.2014 16:35, Chris Angelico wrote: Would be nice if there could be some clear indication that this is the official and current repo. indeed. Also, the install procedure is a bit dangerous for new python users like me. NetCDF4 is out since 2008, it would be great if SciPy could

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Chris Angelico
On Wed, Jun 25, 2014 at 1:40 AM, Fabien fabien.mauss...@gmail.com wrote: Other related annoying stuff when learning is the good old 2.7 VS 3 problem: mowglie@flappi ~ $ apt-cache search SciPy [...] python-scipy - scientific tools for Python python3-scipy - scientific tools for Python 3

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Ethan Furman
On 06/24/2014 08:58 AM, Chris Angelico wrote: Basically, C is for writing high level languages in, and Python and Pike are for writing applications. Life is good. +1 QOTW -- https://mail.python.org/mailman/listinfo/python-list

Re: Error in PyDev but not in the standard python interpreter

2014-06-24 Thread Ethan Furman
On 06/24/2014 07:04 AM, Chris Angelico wrote: Here's what I'd try: import sys sys.modules[d1.__class__.__module__].__file__ sys.modules[d2.__class__.__module__].__file__ Do those in both environments and see where things are actually coming from. Debugging tips always appreciated.

Python 3.4.1 installer on Mac links Python to old Tcl/Tk

2014-06-24 Thread Peter Tomcsanyi
Hello, I use the Python 3.4.1 installer from https://www.python.org/downloads/release/python-341/ The Windows installation comes with Tcl/Tk version 8.6 which has some new features (compared to 8.5) that are very important to me. But the Mac installer does not include Tcl/Tk and the page:

Passing a frame to pdb.Pdb.set_trace

2014-06-24 Thread Rotwang
Hi all, I've found something weird with pdb and I don't understand it. I want to define a function mydebugger() which starts the debugger in the caller's frame. The following is copied from IDLE with Python 2.7.3 (I've since tried it with 3.3.0 and the same thing happens): Python 2.7.3

Re: Python 3.4.1 installer on Mac links Python to old Tcl/Tk

2014-06-24 Thread Ned Deily
In article locf10$td8$1...@ger.gmane.org, Peter Tomcsanyi tomcsa...@slovanet.sk wrote: I use the Python 3.4.1 installer from https://www.python.org/downloads/release/python-341/ The Windows installation comes with Tcl/Tk version 8.6 which has some new features (compared to 8.5) that are

Re: Python 3.4.1 installer on Mac links Python to old Tcl/Tk

2014-06-24 Thread Ned Deily
In article locf10$td8$1...@ger.gmane.org, Maybe this is not the right place for this kind of question... can anyone suggest a better place so that the question has a chance to be read by the person who is actually creating the installation packages? Should I try to send this as a bug to

Re: Python 3.4.1 installer on Mac links Python to old Tcl/Tk

2014-06-24 Thread Peter Tomcsanyi
Ned Deily n...@acm.org wrote in message news:nad-d2ddcb.14070824062...@news.gmane.org... Probably easier, though, is to install Python 3.4 from MacPorts which does provide its own version of Tcl/Tk 8.6.1, the Cocoa version by default or optionally an X11 version: # after installing the base

Re: Off-Topic: The Machine

2014-06-24 Thread Steven D'Aprano
On Tue, 24 Jun 2014 13:06:56 +0200, Johannes Bauer wrote: On 24.06.2014 03:23, Steven D'Aprano wrote: http://www.iflscience.com/technology/new-type-computer-capable- calculating-640tbs-data-one-billionth-second-could Relevance: The Machine uses *eighty times less power* for the same amount

[issue21820] unittest: unhelpful truncating of long strings.

2014-06-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Will be enough just to increase default maximal string length (_MAX_LENGTH) to say 200? I think we can do this even in a bug fix release for 3.4. We can also increase the number of tail characters (_MIN_BEGIN_LEN and _MIN_END_LEN). I'm against the don't

[issue21820] unittest: unhelpful truncating of long strings.

2014-06-24 Thread Chris Withers
Chris Withers added the comment: No, it would not be enough. Please see the report above, the repr of non-strings may be large, but it's often intended that way and all of the string should be displayed. It really is a shame that no API was provided to control this behaviour. I actually

[issue12066] Empty ('') xmlns attribute is not properly handled by xml.dom.minidom

2014-06-24 Thread Ned Deily
Ned Deily added the comment: This problem was fixed in Python 2.7.1 by b71aaf4e7d8d for Issue5762. -- nosy: +ned.deily resolution: - duplicate stage: - resolved status: open - closed superseder: - AttributeError: 'NoneType' object has no attribute 'replace' versions: +Python 2.7

[issue12455] urllib2 forces title() on header names, breaking some requests

2014-06-24 Thread karl
karl added the comment: Mark, I'm happy to followup. I will be in favor of removing any capitalization and not to change headers whatever they are. Because it doesn't matter per spec. Browsers do not care about the capitalization. And I haven't identified Web Compatibility issues regarding

[issue5550] [urllib.request]: Comparison of HTTP headers should be insensitive to the case

2014-06-24 Thread karl
karl added the comment: @Mark, yup, I can do that. I just realized that since my contribution there was a PSF Contributor Agreement. This is signed. I need to dive a bit again in the code to remember where things fail. -- ___ Python tracker

[issue21833] Fix unicodeless build of Python

2014-06-24 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

[issue21834] Fix a number of tests in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes a number of tests for Python built with --disable-unicode configure option. -- components: Tests files: tests.patch keywords: patch messages: 221403 nosy: christian.heimes, giampaolo.rodola, ncoghlan, serhiy.storchaka priority:

[issue1859] textwrap doesn't linebreak on \n

2014-06-24 Thread paul j3
Changes by paul j3 ajipa...@gmail.com: -- nosy: +paul.j3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1859 ___ ___ Python-bugs-list mailing list

[issue21834] Fix a number of tests in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- components: +Unicode dependencies: +Fix unicodeless build of Python nosy: +ezio.melotti, haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21834

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- components: +Unicode nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21833 ___ ___

[issue21836] Fix sqlite3 in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the sqlite3 module and it's tests for Python built with --disable-unicode configure option. -- components: Extension Modules, Library (Lib), Tests files: sqlite.patch keywords: patch messages: 221405 nosy: ghaering,

[issue21835] Fix Tkinter in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the Tkinter module and it's tests for Python built with --disable-unicode configure option. -- components: Build, Tests, Tkinter files: tkinter.patch keywords: patch messages: 221404 nosy: serhiy.storchaka priority: normal

[issue21837] Fix tarfile in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the tarfile module and it's tests for Python built with --disable-unicode configure option. -- components: Library (Lib), Tests files: tarfile.patch keywords: patch messages: 221406 nosy: lars.gustaebel, serhiy.storchaka

[issue21835] Fix Tkinter in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21835 ___

[issue21836] Fix sqlite3 in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21836 ___

[issue21837] Fix tarfile in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21837 ___

[issue21838] Fix ctypes in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the ctypes module and it's tests for Python built with --disable-unicode configure option. -- components: Library (Lib), Tests, ctypes files: ctypes.patch keywords: patch messages: 221407 nosy: amaury.forgeotdarc, belopolsky,

[issue21839] Fix distutils in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes distutils and it's tests for Python built with the --disable-unicode configure option. -- components: Distutils, Tests messages: 221408 nosy: dstufft, eric.araujo, serhiy.storchaka priority: normal severity: normal stage: patch

[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

[issue21839] Fix distutils in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file35750/distutils.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21839 ___

[issue21840] Fix os.path in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes os.path implementations and their's tests for Python built with --disable-unicode configure option. It also fixes a bug in posixpath which affects unicode build too. -- components: Library (Lib), Tests files: os_path.patch

[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 rep...@bugs.python.org http://bugs.python.org/issue21833

[issue21841] Fix xml.sax in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the xml.sax module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: xml_sax.patch keywords: patch messages: 221412 nosy: christian.heimes, serhiy.storchaka

[issue21834] Fix a number of tests in unicodeless build

2014-06-24 Thread STINNER Victor
STINNER Victor added the comment: I'm not sure that we should fix this issue: see the issue #21833. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21834 ___

[issue21842] Fix IDLE in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes IDLE and it's tests for Python built with the --disable-unicode configure option. -- components: IDLE, Tests messages: 221414 nosy: kbk, roger.serwy, serhiy.storchaka, terry.reedy priority: normal severity: normal stage: patch

[issue21836] Fix sqlite3 in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21836 ___ ___

[issue21835] Fix Tkinter in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21835 ___ ___

[issue21837] Fix tarfile in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21837 ___ ___

[issue21838] Fix ctypes in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python nosy: +benjamin.peterson versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21838

[issue21839] Fix distutils in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21839 ___

[issue21841] Fix xml.sax in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21841 ___

[issue21842] Fix IDLE in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python keywords: +patch nosy: +benjamin.peterson Added file: http://bugs.python.org/file35753/idle.patch ___ Python tracker rep...@bugs.python.org

[issue21840] Fix os.path in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21840 ___

[issue21843] Fix doctest in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the doctest module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: doctest.patch keywords: patch messages: 221415 nosy: benjamin.peterson, serhiy.storchaka

[issue21832] collections.namedtuple does questionable things when passed questionable arguments

2014-06-24 Thread STINNER Victor
STINNER Victor added the comment: IMO we should rewrite the implementation of namedtuple to avoid completly eval(). But there is the problem of the _source attribute: #19640. -- nosy: +haypo ___ Python tracker rep...@bugs.python.org

[issue21844] Fix HTMLParser in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the HTMLParser module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests messages: 221417 nosy: benjamin.peterson, ezio.melotti, serhiy.storchaka priority: normal

[issue21845] Fix plistlib in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the plistlib module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: plistlib.patch keywords: patch messages: 221418 nosy: benjamin.peterson,

[issue21846] Fix zipfile in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the zipfile module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: zipfile.patch keywords: patch messages: 221420 nosy: alanmcintyre, benjamin.peterson,

[issue21844] Fix HTMLParser in unicodeless build

2014-06-24 Thread Ezio Melotti
Ezio Melotti added the comment: You forgot to attach the patch :) -- assignee: - ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21844 ___

[issue21847] Fix xmlrpc in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the xmlrpc module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests messages: 221421 nosy: benjamin.peterson, loewis, serhiy.storchaka priority: normal severity:

[issue21848] Fix logging in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the logging module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: logging.patch keywords: patch messages: 221422 nosy: benjamin.peterson,

[issue21849] Fix multiprocessing in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the multiprocessing module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: multiprocessing.patch keywords: patch messages: 221423 nosy: benjamin.peterson,

[issue21850] Fix httplib and SimpleHTTPServer in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the httplib and the SimpleHTTPServer modules for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests messages: 221424 nosy: benjamin.peterson, serhiy.storchaka priority: normal

[issue21843] Fix doctest in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21843 ___

[issue21845] Fix plistlib in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21845 ___

[issue21846] Fix zipfile in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21846 ___

[issue21849] Fix multiprocessing in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21849 ___

[issue21847] Fix xmlrpc in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python keywords: +patch Added file: http://bugs.python.org/file35759/xmlrpc.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21847

[issue21848] Fix logging in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21848 ___

[issue21850] Fix httplib and SimpleHTTPServer in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python keywords: +patch Added file: http://bugs.python.org/file35760/http.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21850

[issue21851] Fix gettext in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the gettext module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: gettext.patch keywords: patch messages: 221425 nosy: benjamin.peterson, loewis,

[issue21853] Fix inspect in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the inspect module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests messages: 221427 nosy: benjamin.peterson, serhiy.storchaka, yselivanov priority: normal

[issue21852] Fix optparse in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the optparse module and it's tests for Python built with the --disable-unicode configure option. -- files: optparse.patch keywords: patch messages: 221426 nosy: aronacher, benjamin.peterson, serhiy.storchaka priority: normal

[issue21854] Fix cookielib in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the cookielib module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: cookielib.patch keywords: patch messages: 221428 nosy: benjamin.peterson,

[issue21852] Fix optparse in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21852 ___

[issue21851] Fix gettext in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21851 ___

[issue21855] Fix decimal in unicodeless build

2014-06-24 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch fixes the decimal module and it's tests for Python built with the --disable-unicode configure option. -- components: Library (Lib), Tests files: decimal.patch keywords: patch messages: 221429 nosy: benjamin.peterson, facundobatista,

[issue21855] Fix decimal in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21855 ___

[issue21854] Fix cookielib in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21854 ___

[issue21853] Fix inspect in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python keywords: +patch Added file: http://bugs.python.org/file35765/inspect.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21853

[issue21833] Fix unicodeless build of Python

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21833 ___ ___

[issue21834] Fix a number of tests in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21834 ___ ___

[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 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

[issue21844] Fix HTMLParser in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Sorry. -- keywords: +patch Added file: http://bugs.python.org/file35766/htmlparser.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21844 ___

[issue21844] Fix HTMLParser in unicodeless build

2014-06-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix unicodeless build of Python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21844 ___

[issue12179] Race condition using PyGILState_Ensure on a new thread

2014-06-24 Thread Mark Lawrence
Mark Lawrence added the comment: Can one of you on the nosy list pick this up please, it's way out of my league. -- nosy: +BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12179 ___

[issue12137] Error EBADF in test_urllibnet

2014-06-24 Thread Mark Lawrence
Mark Lawrence added the comment: No longer an issue? -- nosy: +BreamoreBoy type: - behavior versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12137

  1   2   3   >