[issue1625] bz2.BZ2File doesn't support multiple streams

2011-09-22 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue1625>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1625] bz2.BZ2File doesn't support multiple streams

2011-09-27 Thread Gökçen Eraslan

Gökçen Eraslan  added the comment:

+1. If we think this as a bug, python 2.x users will never be able to extract 
multiple-stream bz2 files.

--

___
Python tracker 
<http://bugs.python.org/issue1625>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1625] bz2.BZ2File doesn't support multiple streams

2011-09-27 Thread Gökçen Eraslan

Gökçen Eraslan  added the comment:

I mean "as a feature".

--

___
Python tracker 
<http://bugs.python.org/issue1625>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue12157] join method of multiprocessing Pool object hangs if iterable argument of pool.map is empty

2011-05-23 Thread Gökçen Eraslan

New submission from Gökçen Eraslan :

When I use map method Pool object with an empty list parameter and then call 
close and wait methods, join() method hangs. I think this is not intended.

Code to reproduce the bug is attached. 

PS: A similar issue (using map method with an empty list argument) is reported 
here[1], but it was about the chunksize parameter and it's resolved.

[1] http://bugs.python.org/issue6433

--
components: Library (Lib)
files: multi.py
messages: 136613
nosy: Gökçen.Eraslan, jnoller
priority: normal
severity: normal
status: open
title: join method of multiprocessing Pool object hangs if iterable argument of 
pool.map is empty
type: behavior
versions: Python 2.7
Added file: http://bugs.python.org/file22077/multi.py

___
Python tracker 
<http://bugs.python.org/issue12157>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1813] Codec lookup failing under turkish locale

2011-05-23 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue1813>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue11576] timedelta subtraction glitch on big timedelta values

2011-08-25 Thread Gökçen Eraslan

Gökçen Eraslan  added the comment:

I can still reproduce that error with Python 2.7.2:

Python 2.7.1 (r271:86832, Apr 27 2011, 15:42:42) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from datetime import *
>>> timedelta(9, 86399, 99) - timedelta(9, 86399, 98)
Traceback (most recent call last):
  File "", line 1, in 
OverflowError: days=-10; must have magnitude <= 9
>>> 

and I see that patch is applied in 2.7.2.

--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue11576>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2011-04-27 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue8296>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9205] Parent process hanging in multiprocessing if children terminate unexpectedly

2011-04-27 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue9205>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9207] multiprocessing occasionally spits out exception during shutdown (_handle_workers)

2011-04-27 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue9207>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue7300] Unicode arguments in str.format()

2012-06-11 Thread Gökçen Eraslan

Changes by Gökçen Eraslan :


--
nosy: +Gökçen.Eraslan

___
Python tracker 
<http://bugs.python.org/issue7300>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17117] Update importlib.util.module_for_loader/set_loader to set when __loader__ = None

2013-02-23 Thread Gökçen Eraslan

Gökçen Eraslan added the comment:

The patch is attached. Is it correct?

--
keywords: +patch
nosy: +Gökçen.Eraslan
Added file: http://bugs.python.org/file29177/python-issue-17117.diff

___
Python tracker 
<http://bugs.python.org/issue17117>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17116] xml.parsers.expat.(errors|model) don't set the __loader__ attribute

2013-02-23 Thread Gökçen Eraslan

Gökçen Eraslan added the comment:

Should this be done in Modules/pyexpat.c file or in Lib/xml/parsers/expat.py? 
If modifying expat.py is sufficient, then attached simple patch does the job. 
By the way I couldn't find the test you are referring to. Is it in 
Lib/test/test_importlib of somewhere else?

--
keywords: +patch
nosy: +gkcn
Added file: http://bugs.python.org/file29186/python-issue-17116.diff

___
Python tracker 
<http://bugs.python.org/issue17116>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com