[issue23160] Respect the environment variable SVNROOT in external-common.bat

2015-01-12 Thread Anselm Kruis

Anselm Kruis added the comment:

Your guess is correct, it will be a null merge into default.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23160
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20284] patch to implement PEP 461 (%-interpolation for bytes)

2015-01-12 Thread Ethan Furman

Ethan Furman added the comment:

I've been digging into this over the last week and come to the realization that 
I won't be able to finish this patch.  My apologies.

Victor, can you take over?  I would appreciate it.

The tests I have written are only for the Python side.  The patch I was working 
on (inherited from Niel and the Python 2 code base) also added a couple C ABI 
functions -- do we want/need these?  How do we write tests for them?

--
stage: patch review - needs patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20284
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22977] Unformatted “Windows Error 0x%X” exception message on Wine

2015-01-12 Thread STINNER Victor

STINNER Victor added the comment:

The attached patch lacks an unit test. When I will be able to build CPython 
again, I will try the patch.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22977
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23221] a(n) the, the a(n) typos

2015-01-12 Thread Karan Goel

Karan Goel added the comment:

Hey I'll be working on this and submitting a patch.

--
nosy: +karan

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23221
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23193] Please support numeric_owner in tarfile

2015-01-12 Thread Eric V. Smith

Eric V. Smith added the comment:

I think Michael is asking if the proposed change would ever be accepted. If the 
answer is no, not even if you write the tests and update the documentation, 
then there's no sense putting the work into this. That seems like a reasonable 
question to me.

I think the proposed change is reasonable, but I'm no tarfile expert.

But since this functionality is available in the tar command as 
--numeric-owner, I think the feature request itself is a good idea.

--
nosy: +eric.smith

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23193
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23193] Please support numeric_owner in tarfile

2015-01-12 Thread R. David Murray

R. David Murray added the comment:

I concur that this is a reasonable feature request, and it is not one that can 
be satisfied without modifying the tarfile module (that is, you can't write a 
simple wrapper to tarfile to get the functionality desired without cutting and 
pasting the entire chown method).

--
nosy: +r.david.murray

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23193
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23189] Set docstrings to empty string when optimizing with -OO.

2015-01-12 Thread Jarle Selvåg

Jarle Selvåg added the comment:

I agree that -OO does what (people have agreed) it's supposed to do.

Many packages manipulates the docstring without checking for 'None' (see list 
below). For many package developers, it seems hard to remember that the 
docstrings may disappear after optimization. This behavior is not intuitive. At 
least in cases where the docstring is set to a string value, the expected 
behavior in my opinion would be to set its value to an empty string during 
optimization with -OO.

Here are some of the packages that run into trouble when the docstrings are set 
to 'None' by the -OO optimization:
algopy
astropy
lmfit
pyamg
pyvisa
mpl_toolkits
sympy
statsmodels
patsy
sklearn

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23189
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22932] email.utils.formatdate uses unreliable time.timezone constant

2015-01-12 Thread Dmitry Shachnev

Changes by Dmitry Shachnev mity...@gmail.com:


Added file: http://bugs.python.org/file37683/issue22932_combined.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22932
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23221] a(n) the, the a(n) typos

2015-01-12 Thread Karan Goel

Karan Goel added the comment:

There we go. I fixed all the reported typos using the best of my knowledge.

--
keywords: +patch
Added file: http://bugs.python.org/file37680/issue23221.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23221
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23209] asyncio: break some cycles

2015-01-12 Thread Martin Richard

Martin Richard added the comment:

I updated the selector patch so BaseSelector.get_key() raises KeyError if the 
mapping is None. All the (non skipped) tests in test_selectors.py passed.

Anyway, if there is an other problem with freeing the mapping object (I don't 
know, maybe reopening a loop may be considered?) this patch can probably be 
dropped. Since this cycle is broken when the loop is closed, the objects will 
likely be collected once the program terminates.

--
Added file: http://bugs.python.org/file37681/break-selector-map-cycle.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23209
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23209] asyncio: break some cycles

2015-01-12 Thread STINNER Victor

STINNER Victor added the comment:

I opened the issue #23225 selectors: raise an exception if the selector is 
closed which is a different approach (but it should also fix the reference 
cycle, I kept the self._map = None change).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23209
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23225] selectors: raise an exception if the selector is closed

2015-01-12 Thread STINNER Victor

New submission from STINNER Victor:

I propose to raise a RuntimeError exception on operations of a selector when 
the selector is closed.

I'm not sure that RuntimeError is the most common exception:

- io and gzip raise ValueError
- asyncio raises RuntimeError (and selectors is linked to asyncio)
- multiprocessing raises OSError
- dbm.dumb raises dbm.dumb.error

This issue is related to the issue #23209 which propopses to set the _map 
attribute to None when in the close() method.

--
components: asyncio
files: close_selector.patch
keywords: patch
messages: 233881
nosy: gvanrossum, haypo, martius, neologix, yselivanov
priority: normal
severity: normal
status: open
title: selectors: raise an exception if the selector is closed
versions: Python 3.4, Python 3.5
Added file: http://bugs.python.org/file37682/close_selector.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23225
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22977] Unformatted “Windows Error 0x%X” exception message on Wine

2015-01-12 Thread Berker Peksag

Changes by Berker Peksag berker.pek...@gmail.com:


--
stage:  - patch review
versions: +Python 3.4, Python 3.5 -Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22977
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19777] Provide a home() classmethod on Path objects

2015-01-12 Thread STINNER Victor

STINNER Victor added the comment:

+def _test_home(self, p):
+q = self.cls(os.path.expanduser('~'))
+self.assertEqual(p, q)
+self.assertEqual(str(p), str(q))
+self.assertIs(type(p), type(q))
+self.assertTrue(p.is_absolute())
+
+def test_home(self):
+p = self.cls.home()
+self._test_home(p)

Why are you using a submethod _test_home()?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19777
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19777] Provide a home() classmethod on Path objects

2015-01-12 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 4a55b98314cd by Antoine Pitrou in branch 'default':
Issue #19777: Provide a home() classmethod on Path objects.
https://hg.python.org/cpython/rev/4a55b98314cd

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19777
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23199] libpython27.a in amd64 release is 32-bit

2015-01-12 Thread Steve Dower

Steve Dower added the comment:

Is the libpython27.a file actually a 32-bit version or is it just corrupted? It 
seems to be considerably smaller than the version in the 32-bit installer, but 
it is certainly not being generated from the 32-bit version.

I didn't write this code originally, and I don't use MinGW, so I'm not entirely 
familiar with how it should work. Do I need separate 64-bit tools to build the 
library for the 64-bit DLL or will the 32-bit tools suffice? Are the interfaces 
stable enough within 64-bit versions of MinGW that shipping the library makes 
sense, or are people likely to always need to regenerate it anyway?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23199
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23225] selectors: raise an exception if the selector is closed

2015-01-12 Thread Charles-François Natali

Charles-François Natali added the comment:

RuntimeError sounds better to me (raising ValueError when no value is
provided, e.g. in select() sounds definitely strange).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23225
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1250] Building external modules using Sun Studio 12

2015-01-12 Thread Erik O'Shaughnessy

Erik O'Shaughnessy added the comment:

Still seeing this issue on Solaris 11 with Solaris Studio compilers when 
building pandas 0.15.2 and matplotlib 1.4.2.

--
nosy: +Erik.O'Shaughnessy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1250
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23199] libpython27.a in amd64 release is 32-bit

2015-01-12 Thread Zach Welch

Zach Welch added the comment:

The libpython27.a is an actual 32-bit version, as confirmed by running objdump 
-t on it.  It reports the sections' file format as pe-i386 instead of 
pe-x86-64.  I am only using it for building for the 64-bit target, so I cannot 
confirm its viability for 32-bit builds.

To build 64-bit Windows binaries, you need a MinGW-w64 toolchain (which is a 
completely separate project from the original MinGW project).  The target 
triplet is x86_64-w64-mingw32.

I cannot speak to the stability of the MinGW-w64 library interface, but I would 
expect it to be stable.  To wit, I would be shocked if future changes required 
regeneration of third-party .a files.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23199
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23185] add inf and nan to math module

2015-01-12 Thread Guido van Rossum

Guido van Rossum added the comment:

Should inf and nan be added to cmath too?  It has e and pi and isnan() and 
isinf()...

Also complex(0, math.nan) a value that is printed as nanj and complex(nanj) 
parses and returns such a value, so the point could be made that there should 
be a constant named complex.nanj.

--
nosy: +gvanrossum

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23185
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23226] Add float linspace recipe to docs

2015-01-12 Thread Andrew Barnert

New submission from Andrew Barnert:

In a recent thread on python-ideas 
(https://mail.python.org/pipermail/python-ideas/2015-January/030817.html), it 
was concluded that Python should not have a range-like type for floats in the 
stdlib, but there should be some simple discussion of the alternatives in the 
docs.

The attached diff describes the issues, demonstrates the simplest reasonable 
algorithm, and links to a recipe on ActiveState (which builds the same 
algorithm into a lazy sequence, and links to other recipes with different 
alternatives).

--
assignee: docs@python
components: Documentation
files: stdtypes.rst.diff
keywords: patch
messages: 233893
nosy: abarnert, docs@python
priority: normal
severity: normal
status: open
title: Add float linspace recipe to docs
type: enhancement
versions: Python 3.5
Added file: http://bugs.python.org/file37684/stdtypes.rst.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23226
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17911] traceback: add a new thin class storing a traceback without storing local variables

2015-01-12 Thread Robert Collins

Robert Collins added the comment:

w.r.t. a new linecache interface, it looks like we need two attributes from 
f_globals: __name__ and __loader__, so that we can eventually call 
__loader__.get_source(__name__).

One small change (to let me focus on traceback) would be to add another kw 
argument  to the existing calls that take module_globals, called e.g. 
get_source, which would be a simple callable (source = get_source()). For the 
deferred linecache situation, we'd then create 
partial(f_globals.__loader__.get_source, f_globals.__name__) and keep that 
around until we need the source. We could even abstract that out into a 
function in linecache to keep the knowledge in one place.

Another way to tackle this would be to add a new function to linecache that 
lazily seeds the cache: it would stash the get_source method and the name 
against the filename, and when getline[s] is called actually invoke it.

I think the second way is a bit nicer myself. What do folk think?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17911
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22729] `wait` and `as_completed` depend on private api

2015-01-12 Thread Andrew Svetlov

Andrew Svetlov added the comment:

-1.
Sorry, I don't see the reason for making custom `Future` class.

Can you elaborate?

--
nosy: +asvetlov

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22729
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22286] Allow backslashreplace error handler to be used on input

2015-01-12 Thread Martin Panter

Changes by Martin Panter vadmium...@gmail.com:


--
nosy: +vadmium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22286
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15836] unittest assertRaises should verify excClass is actually a BaseException class

2015-01-12 Thread Martin Panter

Changes by Martin Panter vadmium...@gmail.com:


--
nosy: +vadmium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15836
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15836] unittest assertRaises should verify excClass is actually a BaseException class

2015-01-12 Thread Berker Peksag

Changes by Berker Peksag berker.pek...@gmail.com:


--
nosy: +berker.peksag
stage: patch review - commit review
versions: +Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15836
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue9587] unittest.assertRaises() return the raised exception

2015-01-12 Thread Martin Panter

Changes by Martin Panter vadmium...@gmail.com:


--
nosy: +vadmium

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue9587
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19777] Provide a home() classmethod on Path objects

2015-01-12 Thread Antoine Pitrou

Antoine Pitrou added the comment:

I've committed the patch, thank you!

--
resolution:  - fixed
stage: needs patch - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19777
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22977] Unformatted “Windows Error 0x%X” exception message on Wine

2015-01-12 Thread Martin Panter

Martin Panter added the comment:

This patch includes a test case, based on Eryksun’s exception code

--
Added file: http://bugs.python.org/file37686/win-error-format-v2.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22977
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23226] Add float linspace recipe to docs

2015-01-12 Thread Andrew Barnert

Andrew Barnert added the comment:

As suggested by the review: removing unnecessary parenthetical, changing ulp 
to digit, and fixing the recipe link.

--
Added file: http://bugs.python.org/file37685/stdtypes.rst.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23226
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23224] LZMADecompressor object is only initialized in __init__

2015-01-12 Thread Martin Panter

Martin Panter added the comment:

A patch for this might conflict with the LZMA patch for Issue 15955, so it 
would be simplest to wait for that issue to be resolved first

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23224
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22932] email.utils.formatdate uses unreliable time.timezone constant

2015-01-12 Thread R. David Murray

R. David Murray added the comment:

The tests fail for me the same way both before and after the code patch:

==
FAIL: test_formatdate (test.test_email.test_utils.FormatDateTests)
--
Traceback (most recent call last):
  File /home/rdmurray/python/p34/Lib/test/support/__init__.py, line 1525, in 
inner
return func(*args, **kwds)
  File /home/rdmurray/python/p34/Lib/test/test_email/test_utils.py, line 145, 
in test_formatdate
self.assertEqual(string, 'Mon, 01 Dec 2014 15:00:00 -')
AssertionError: 'Mon, 01 Dec 2014 14:00:00 -' != 'Mon, 01 Dec 2014 15:00:00 
-'
- Mon, 01 Dec 2014 14:00:00 -
?   ^
+ Mon, 01 Dec 2014 15:00:00 -
?   ^


==
FAIL: test_formatdate_with_localtime 
(test.test_email.test_utils.FormatDateTests)
--
Traceback (most recent call last):
  File /home/rdmurray/python/p34/Lib/test/support/__init__.py, line 1525, in 
inner
return func(*args, **kwds)
  File /home/rdmurray/python/p34/Lib/test/test_email/test_utils.py, line 157, 
in test_formatdate_with_localtime
self.assertEqual(string, 'Mon, 01 Dec 2014 18:00:00 +0300')
AssertionError: 'Mon, 01 Dec 2014 18:00:00 +0400' != 'Mon, 01 Dec 2014 18:00:00 
+0300'
- Mon, 01 Dec 2014 18:00:00 +0400
? ^
+ Mon, 01 Dec 2014 18:00:00 +0300
? ^

--
components: +email

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22932
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10552] Tools/unicode/gencodec.py error

2015-01-12 Thread Martin Panter

Martin Panter added the comment:

Here is a new version of Kuchling’s patch. I restored some mapping files which 
do not give any errors (including the mac_turkish codec, which is actually 
documented), and removed both readme files.

--
components: +Unicode
nosy: +haypo, vadmium
versions: +Python 3.4
Added file: http://bugs.python.org/file37687/10552-remove-apple-files-v2.txt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10552
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23227] Generator's finally block not run if close() called before first iteration

2015-01-12 Thread Stephen Drake

New submission from Stephen Drake:

If a generator has its close() method called before any items are requested 
from it, a finally block in the generator function will not be executed.

I encountered this when wrapping an open file to alter the result of iterating 
over it.  Using a generator function with a try/finally block seemed like a 
simple way of acheiving this.  Here's an example that logs each line as it's 
read:

def logged_lines(f):
try:
for line in f:
logging.warning(line.strip())
yield line
finally:
logging.warning('closing')
f.close()

If the generator is created and closed immediately, the underlying file-like 
object is left open:
 f = urlopen('https://docs.python.org/')
 lines = logged_lines(f)
 lines.close()
 f.closed
False

But once the first item is requested from the generator, close() will trigger 
cleanup:
 lines = logged_lines(f)
 next(lines)
WARNING:root:!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
'!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN\n'
 lines.close()
WARNING:root:closing
 f.closed
True

Having read the documentation for yield expressions, I don't believe this 
behaviour to be non-conformant - but it still seems like a bit of a gotcha to 
me.  Should this usage be warned against?

--
assignee: docs@python
components: Documentation, Interpreter Core
messages: 233903
nosy: docs@python, sjdrake
priority: normal
severity: normal
status: open
title: Generator's finally block not run if close() called before first 
iteration
type: behavior
versions: Python 2.7, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23227
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue8450] httplib: false BadStatusLine() raised

2015-01-12 Thread Demian Brecht

Changes by Demian Brecht demianbre...@gmail.com:


--
nosy: +demian.brecht

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8450
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23199] libpython27.a in amd64 release is 32-bit

2015-01-12 Thread Steve Dower

Steve Dower added the comment:

Thanks for the notice. I'll try and get that fixed up for the next 2.7 release.

--
assignee:  - steve.dower

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue23199
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22932] email.utils.formatdate uses unreliable time.timezone constant

2015-01-12 Thread Berker Peksag

Changes by Berker Peksag berker.pek...@gmail.com:


--
nosy: +berker.peksag

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22932
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com