[issue22648] Unable to install Python 3.4.2 amd64 on Windows 8.1

2014-10-17 Thread Pierre Boulanger

Pierre Boulanger added the comment:

the result of log is:
=== Verbose logging started: 18-10-14  08:42:21  Build type: SHIP UNICODE 
5.00.9600.00  Calling process: C:\WINDOWS\system32\msiexec.exe ===
MSI (c) (C4:34) [08:42:21:518]: Font created.  Charset: Req=0, Ret=0, Font: 
Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (C4:34) [08:42:21:518]: Font created.  Charset: Req=0, Ret=0, Font: 
Req=MS Shell Dlg, Ret=MS Shell Dlg

MSI (c) (C4:24) [08:42:21:550]: Resetting cached policy values
MSI (c) (C4:24) [08:42:21:565]: Machine policy value 'Debug' is 0
MSI (c) (C4:24) [08:42:21:565]: *** RunEngine:
   *** Product: C:\Users\pierre\Doocuments\python-3.4.2.amd64.msi
   *** Action: 
   *** CommandLine: **
MSI (c) (C4:24) [08:42:21:565]: Note: 1: 2203 2: 
C:\Users\pierre\Doocuments\python-3.4.2.amd64.msi 3: -2147287037 
MSI (c) (C4:24) [08:42:21:565]: MainEngineThread is returning 3
=== Verbose logging stopped: 18-10-14  08:42:21 ===

--

___
Python tracker 

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



[issue20689] socket.AddressFamily is absent in pydoc output

2014-10-17 Thread Ethan Furman

Ethan Furman added the comment:

As I said in msg209237:

> The containers are there to help with discoverability.  If you want to know 
> what
> all the (common) AF values are you can either do
> 
> [name for name in dir(socket) if name.isupper() and 
> name.startswith('AF_')]
> 
> or
> 
> list(socket.AddressFamily)


The Enum classes have been documented, so they should be in __all__.

--
nosy: +ethan.furman

___
Python tracker 

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



[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman

Changes by Ethan Furman :


--
versions: +Python 3.4, Python 3.5 -Python 2.7, Python 3.1, Python 3.2

___
Python tracker 

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



[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman

Changes by Ethan Furman :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 7c183c782401 by Ethan Furman in branch '3.4':
Issue7186: document that __doc__ is not inherited by subclasses
https://hg.python.org/cpython/rev/7c183c782401

New changeset cb8606fc84df by Ethan Furman in branch 'default':
Issue7186: document that __doc__ is not inherited by subclasses
https://hg.python.org/cpython/rev/cb8606fc84df

--
nosy: +python-dev

___
Python tracker 

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



[issue22665] shutil.__all__ incomplete

2014-10-17 Thread Martin Panter

New submission from Martin Panter:

Continuing on from Issue 22247 (other out-of-date __all__ attributes), 
shutil.__all__ is missing (at least) get_terminal_size(), which was implemented 
for Issue 13609.

--
components: Library (Lib)
messages: 229630
nosy: vadmium
priority: normal
severity: normal
status: open
title: shutil.__all__ incomplete
type: behavior
versions: Python 3.4

___
Python tracker 

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



[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-10-17 Thread Martin Panter

Changes by Martin Panter :


--
nosy: +vadmium

___
Python tracker 

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



[issue15944] memoryviews and ctypes

2014-10-17 Thread Martin Panter

Changes by Martin Panter :


--
nosy: +vadmium

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Aaron Hill added the comment:

I've added a second patch, which properly distinguishes between major and minor 
revisions, and updates the docs to account for the new behavior.

--

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Changes by Aaron Hill :


Added file: http://bugs.python.org/file36958/gettext-mo-fixup.patch

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Changes by Aaron Hill :


Removed file: 
http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Changes by Aaron Hill :


Added file: http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Aaron Hill added the comment:

Okay, then. I'll just leave it out.

--

___
Python tracker 

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



[issue22607] find by dichotomy the failing test

2014-10-17 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I believe the goal, and a better title, is "Automate leak discovery within a 
group of tests".  Bisection or dichotomy is a means, not a goal, and should not 
be part of the title.

"Leak discovery" means 'find a test within the group that has a leak (which we 
know or suspect might be occurring)'. 

'Test' can mean multiple modules, one module, one TestCase class, one test_xxx 
method, one subtest, or one assert.  What might it mean in 'group of tests'?  
Pinning a leak on a particular statement likely has to be done manually; 
eliminate that.  On the other hand, it is feasible (see below) to automatically 
blame a particular test method and perhaps a particular subtest.  So interprete 
'tests' as 'test methods or subtests'.

Unittest can run all test methods in a module, all test methods in a test 
class, or an individual test method.  Idle already has a module browser (Class 
Browser), based on stdlib's pyclbr and Idle's TreeWidget, that could be adapted 
(perhaps using ttk.Treeview instead) to produce a module-test_class-test tree.  
Add buttons to select a particular leak test and others to select manual or 
auto nagivation of the tree and we might have something worthwhile.  It could 
go in Tools/Scripts or PyPI.

I have not used subtests yet since they are not available on 2.7, but I can 
imagine semi-automated editing, saving to a temp file, and running.  I would 
need experience with real subtest bisection to comment on the patch.

--
nosy: +terry.reedy
stage:  -> test needed

___
Python tracker 

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



[issue22606] Inconsistency between Python 2 and PyPy regarding future imports

2014-10-17 Thread Terry J. Reedy

Terry J. Reedy added the comment:

A difference in internal behavior between CPython and PyPy is not necessarily a 
CPython bug, or even a PyPy bug.  It may just be an implementation choice.  So 
ignore PyPy and consider Python doc versus CPython behavior.

Running the three quoted lines by themselves gives SyntaxError.  compiling the 
ast object does the same.  So this is one of those SyntaxErrors not noticed (or 
at least not enforced) until the compile phase. This was specified in PEP 236 
and still is in the Reference: "A future statement is recognized and treated 
specially at compile time".  Whenever the compiler raises SyntaxError, it 
declares the AST to be syntactically invalid.  How can this be?

The ast doc starts with "The ast module helps Python applications to process 
trees of the Python *abstract syntax grammar*. ... this module helps to find 
out programmatically what the current grammar looks like." (asterisks added). 
The abstract grammar does *not* include a 'Future' statement. In your code, 
x.body[1] is an ImportFrom object.  So the ast from the code above does not 
violate the abstract grammar and there is no parsing bug.

We should either either close this as 'not a bug' or change to a doc issue to 
add something about the ast abstract grammar being 'looser' than the defacto 
context-sensitive Python grammar.  Perhaps something like "The language defined 
by the context-free LL(1) abstract grammer is a superset of the actual 
context-sensitive Python language. (Consider position-dependent future 
statements.)  Consequently, some ast trees generate a SyntaxError when 
compiled."

It is somewhat arbitrary when a print statement is converted to a print 
expression -- while parsing, or while compiling.  The two implementations made 
different choices.

Since the parser does recognize a Future statement and change the ast objects 
it creates, it would be possible to add a Future object to ast trees.  But it 
would do no good as far as the syntax check goes.  The context-free LL(1) 
parser could not recognize a violation of the context-sensitive constraint.

--
nosy: +benjamin.peterson, terry.reedy

___
Python tracker 

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



[issue16079] list duplicate test names with patchcheck

2014-10-17 Thread Robert Collins

Robert Collins added the comment:

FWIW testtools rejects test suites with duplicate test ids; I'm considering 
adding that feature into unittest itself. We'd need an option to make it warn 
rather than error I think, but if we did that we wouldn't need a separate 
script at all.

--
nosy: +rbcollins

___
Python tracker 

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



[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset a1500e4a159a by Robert Collins in branch 'default':
Issue #17401: document closefd in io.FileIO docs and add to repr
https://hg.python.org/cpython/rev/a1500e4a159a

--
nosy: +python-dev

___
Python tracker 

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



[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Thanks for the patch, Vajrasky, but I chose a different fix, since the proposed 
one could leave the file open if the shlex constructor raised an error.  Not 
particularly important, but as long as we are cleaning up the code we might as 
well make it as clean as we can.

Since 2.7 doesn't generate ResourceWarnings I chose not to apply it there.

--
nosy: +r.david.murray
resolution:  -> fixed
stage: commit review -> resolved
status: open -> closed

___
Python tracker 

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



[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 4c2b77d0680b by R David Murray in branch '3.4':
#18853: Fix resource warning in shlex's __main__ section.
https://hg.python.org/cpython/rev/4c2b77d0680b

New changeset 8ed630f28753 by R David Murray in branch 'default':
Merge: #18853: Fix resource warning in shlex's __main__ section.
https://hg.python.org/cpython/rev/8ed630f28753

--
nosy: +python-dev

___
Python tracker 

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



[issue15989] Possible integer overflow of PyLong_AsLong() results

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Are the fixes in the final patch waiting for someone to write tests, or is the 
intent to commit them without tests after a final review because tests are too 
difficult to write?

--
nosy: +r.david.murray

___
Python tracker 

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



[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Thanks, Jyrki.

--
nosy: +r.david.murray
resolution:  -> fixed
stage: commit review -> resolved
status: open -> closed
versions: +Python 3.4, Python 3.5 -Python 3.2

___
Python tracker 

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



[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e9cb45ccf42b by R David Murray in branch '3.4':
#9351: set_defaults on subparser is no longer ignored if set on parent.
https://hg.python.org/cpython/rev/e9cb45ccf42b

New changeset b35a811d4420 by R David Murray in branch 'default':
Merge: #9351: set_defaults on subparser is no longer ignored if set on parent.
https://hg.python.org/cpython/rev/b35a811d4420

New changeset 1a3143752db2 by R David Murray in branch '2.7':
#9351: set_defaults on subparser is no longer ignored if set on parent.
https://hg.python.org/cpython/rev/1a3143752db2

--
nosy: +python-dev

___
Python tracker 

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



[issue13664] UnicodeEncodeError in gzip when filename contains non-ascii

2014-10-17 Thread Terry J. Reedy

Terry J. Reedy added the comment:

test_gzip passed after this patch.

--
status: open -> closed

___
Python tracker 

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



[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Thanks, Stéphane.  I committed the fix with a modified test.

--
resolution:  -> fixed
stage: commit review -> resolved
status: open -> closed

___
Python tracker 

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



[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset fea3ddcaf652 by R David Murray in branch '3.4':
#21991: make headerregistry params property MappingProxyType.
https://hg.python.org/cpython/rev/fea3ddcaf652

New changeset 5beb1ea76f36 by R David Murray in branch 'default':
Merge: #21991: make headerregistry params property MappingProxyType.
https://hg.python.org/cpython/rev/5beb1ea76f36

--
nosy: +python-dev

___
Python tracker 

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



[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

Ok, then I've committed the patch to 3.4 and 3.5.

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue22653] Crash in insertdict

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 9ec84f9b61c6 by Antoine Pitrou in branch '3.4':
Issue #22653: Fix an assertion failure in debug mode when doing a reentrant 
dict insertion in debug mode.
https://hg.python.org/cpython/rev/9ec84f9b61c6

New changeset 4ff865976bb9 by Antoine Pitrou in branch 'default':
Issue #22653: Fix an assertion failure in debug mode when doing a reentrant 
dict insertion in debug mode.
https://hg.python.org/cpython/rev/4ff865976bb9

--
nosy: +python-dev

___
Python tracker 

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



[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou

Changes by Antoine Pitrou :


--
versions:  -Python 3.3

___
Python tracker 

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



[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

I can't reproduce. Which platform are you on?

--
nosy: +georg.brandl, pitrou

___
Python tracker 

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



[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Looks fine to me.

--

___
Python tracker 

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



[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-17 Thread ppperry

New submission from ppperry:

Note: not sure whether this issue belongs as a "behavior" or an "enhancement"

In IDLE:
>>> def print_a_test_string():
 print "test"

>>>print_a_test_string()
test
>>>threading.Thread(target=print_a_test_string).start()
test
>>>multiprocessing.Process(target=print_a_test_string).start()
[test is not said]
>>>
Running this example in the standard interpreter will print "test" all three 
times (in current thread, new thread, new process). (Acutally, I got an 
AttributeError and had to work aroung it using functools.partial(print, "test"))

OS: Windows XP

--
components: IDLE, Library (Lib)
messages: 229611
nosy: ppperry
priority: normal
severity: normal
status: open
title: IDLE: Standard output and error from multiprocessing vanishes
type: behavior
versions: Python 2.7

___
Python tracker 

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



[issue7186] Document specialness of __doc__, and possibly other "special" attributes

2014-10-17 Thread Ethan Furman

Ethan Furman added the comment:

Patch attached for the __doc__ attribute.

--
keywords: +patch
nosy: +ethan.furman
stage: needs patch -> patch review
Added file: http://bugs.python.org/file36956/issue7186.stoneleaf.01.patch

___
Python tracker 

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



[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Robert Collins

New submission from Robert Collins:

cpython.hg$ make patchcheck
./python ./Tools/scripts/patchcheck.py
Getting the list of files that have been added/changed ... 448 files
Fixing whitespace ... 0 files
Fixing C file whitespace ... 5 files:
  Include/patchlevel.h
  Modules/_ctypes/callbacks.c
  Modules/_io/_iomodule.c
  Modules/_io/fileio.c
  Modules/_posixsubprocess.c
Fixing docs whitespace ... 1 file:
  Doc/tools/static/py.png
Docs modified ... yes
Misc/ACKS updated ... yes
Misc/NEWS updated ... yes
configure regenerated ... yes
pyconfig.h.in regenerated ... no

Note the change to py.png: its not a text filetohave its whitespace changed :/.

--
messages: 229609
nosy: rbcollins
priority: normal
severity: normal
status: open
title: patchcheck alters content of .png files

___
Python tracker 

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



[issue22655] Build error on CentOS 5.4

2014-10-17 Thread Stefan Krah

Stefan Krah added the comment:

It's a gcc bug, see #20324.

--
nosy: +skrah
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Zachary Ware

Zachary Ware added the comment:

Done, as long as the buildbots stay happy with it.

--
assignee:  -> zach.ware
components: +Installation, Windows
resolution:  -> fixed
stage:  -> resolved
status: open -> closed
type:  -> security

___
Python tracker 

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



[issue22160] Windows installers need to be updated following OpenSSL security release

2014-10-17 Thread Zachary Ware

Zachary Ware added the comment:

Superseded by #22644 (and done, anyway).

--
assignee:  -> zach.ware
resolution:  -> fixed
stage:  -> resolved
status: open -> closed
superseder:  -> Update Windows installers to OpenSSL 1.0.1j
type:  -> security

___
Python tracker 

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



[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 927cca0b9337 by Zachary Ware in branch '2.7':
Issue #22644: Update the Windows build to OpenSSL 1.0.1j
https://hg.python.org/cpython/rev/927cca0b9337

New changeset 6ad0299fa279 by Zachary Ware in branch '3.4':
Issue #22644: Update the Windows build to OpenSSL 1.0.1j
https://hg.python.org/cpython/rev/6ad0299fa279

New changeset bcd7fe682095 by Zachary Ware in branch 'default':
Issue #22644: Update the Windows build to OpenSSL 1.0.1j
https://hg.python.org/cpython/rev/bcd7fe682095

--
nosy: +python-dev

___
Python tracker 

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



[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ethan Furman

Ethan Furman added the comment:

Yeah, that was interesting. ;)

I think there are two different, yet related, issues:

  - which __doc__ should help display?

  - how should __doc__ be inherited?

The issue we should deal with here is the first, as what help displays does not 
have to follow the exact same rules as inheritence and magic-method lookup; 
specifically, help should be free to look for a __doc__ on the instance and 
incorporate it.

--

___
Python tracker 

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



[issue22661] WinXP concerns

2014-10-17 Thread Tcll

Tcll added the comment:

ah I see
in that case, I work on my program for you guys as well :)

it won't be finished any time soon, but what I'm working on is a recompiler 
specifically for this garbage of cross-platform support being hindered.

so in the mean-time try to do what you can towards keeping XP supported ;)

just understand, from what I've been hacking and paying attention to, MS wants 
to control both the market and Windows PC users.
(the initial release if the XBox One is my biggest push away from Windows)
^ MS is only holding back on those restrictions for a later time

that RAT I talk about has been found in all versions of Windows from Vista and 
up.
(it's not confirmed by hackers to work in Vista, but that doesn't mean it 
doesn't work)

I wish you guys the best of luck ;)
Thanks for trying at least :)

+1 guys ;)

*looks toward other developers*
finally, developers that do stuff right

--

___
Python tracker 

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



[issue22662] subprocess.Popen.communicate causing local tty terminal settings to change inconsistently

2014-10-17 Thread Kyle

New submission from Kyle:

I'm not sure if this is a bash or Python issue.  I'm trying to run a command on 
a remote server, using the subprocess module.  I call ssh inside of 
subprocess.Popen(...).communicate(), like so:

output = subprocess.Popen(["/bin/env %s /usr/bin/ssh -ttt %s@%s -- %s;" % (env, 
user, host, command)], stdout=subprocess.PIPE, stderr=subprocess.PIPE, 
shell=True).communicate()

Following the call to communicate(), my terminal settings are changed.  
However, it's not always repeatable.  Sometimes it happens, and other times it 
does not.  When it does happen, I've noticed that the following tty options are 
ON prior to the command executing, and OFF afterwards (output from stty -a):
icrnl opost isig icanon echo echoe echok

Something with the communicate() call seems to cause the issue.  I don't 
actually have to print anything to the screen from Python for it to occur.

The problem goes away if I remove the "-t" option to ssh, however, I'm passing 
through the TERM environmental variable, and need -t to be set.  Because of 
this, I'm not sure if the problem is with the Python call, or something within 
Bash.

I've been able to repeat this on Ubuntu 13.10 running Python 2.7.5, and on Red 
Hat 6.4 running Python 2.6.6.

--
messages: 229602
nosy: kflavin
priority: normal
severity: normal
status: open
title: subprocess.Popen.communicate causing local tty terminal settings to 
change inconsistently
type: behavior
versions: Python 2.7

___
Python tracker 

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



[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

Yeah, it wasn't so much negative, as...edgy? :)

We can't really support what Microsoft doesn't support, since we use the 
Microsoft compilers.  There is discussion about better support for alternate 
compilers, though, and if that eventuates *some* sort of support for XP ought 
to be possible, though exactly what it would look like would be up to the 
people interested enough to do it.

--

___
Python tracker 

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



[issue22661] WinXP concerns

2014-10-17 Thread Tcll

Tcll added the comment:

I'm sorry... I wasn't trying to sound negative...

I deal with alot of stress from many developers in this area,
so yea, you can see why I sound like that.

but thanks for telling me about that with 2.7 :)
though I was hoping to try out python3 in the future. =3=

--

___
Python tracker 

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



[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

This is not an appropriate discussion for the bug tracker.  python-dev would be 
the logical venue, but your apparent tone of voice isn't optimal for 
stimulating positive discussion, I'm afraid :)

That said, we won't be dropping support for XP in 2.7, since it is in 
maintenance.

--
nosy: +r.david.murray
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl

Georg Brandl added the comment:

OK, thanks for the feedback.

--
status: open -> closed

___
Python tracker 

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



[issue22661] WinXP concerns

2014-10-17 Thread Tcll

New submission from Tcll:

About a week ago I read you were also dropping support for WinXP.

This will cause issues for me as I don't support newer Win (or should I say 
MS-RAT infested) OS's

I use linux now, but I still use XP as a testing interface for Windows.
(I will not install any newer windows as I prefer my freedom when MS pushes 
their button)

I hope this changes development aims to continue supporting WinXP...

if not, I can no longer consider python as cross-platform,
and will be forced to use an outdated cross-platform interpreter.


I'm still looking into how to disable the MS-RAT with python, as a friend of my 
friend has already done it.
my friend wasn't interested in asking him how when he did it, and getting in 
contact with him is quite difficult.

if (and only if) I can disable MS's RAT, I will gladly use a newer windows as a 
testing interface, so long as I can hack it like XP.
(I like doing cool things to my OS, which is what I mean by "hacking")

The reason I chose 2.7 for the python version is due to me being a PyOpenGL 
programmer and that the extension runs faster in 2.7

--
components: Windows
messages: 229597
nosy: Tcll, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: WinXP concerns
type: enhancement
versions: Python 2.7

___
Python tracker 

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



[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

I think the information from the following line of the 'open' docs should be 
added to the doc patch:

"If a filename is given closefd has no effect and must be True (the default)."

Otherwise it looks fine to me.

--
nosy: +r.david.murray

___
Python tracker 

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



[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Thomas Levine

Thomas Levine added the comment:

It has been working for me recently.

Adding to your suggestion that it is probably PyPI: I didn't do anything in 
particular to fix this, and I think it is more likely that PyPI got fixed than 
that I upgraded Python (and thus distutils).

--
status: pending -> open

___
Python tracker 

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



[issue16662] load_tests not invoked in package/__init__.py

2014-10-17 Thread Robert Collins

Robert Collins added the comment:

Closing as the fix to the test suite is applied.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

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



[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl

Georg Brandl added the comment:

Is this still a problem? If yes, I would contact the PyPI team directly, this 
tracker is not the right place for PyPI bugs.

(It is unlikely to be a distutils bug.)

--
nosy: +georg.brandl
resolution:  -> third party
status: open -> pending

___
Python tracker 

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



[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl

Changes by Georg Brandl :


--
nosy: +benjamin.peterson, larry
versions: +Python 2.7, Python 3.4, Python 3.5

___
Python tracker 

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



[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl

Changes by Georg Brandl :


--
priority: normal -> release blocker

___
Python tracker 

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



[issue16000] test_curses should use unittest

2014-10-17 Thread Zachary Ware

Changes by Zachary Ware :


--
assignee:  -> zach.ware
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.5 -Python 3.3

___
Python tracker 

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



[issue16000] test_curses should use unittest

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset f598d0014d07 by Zachary Ware in branch '3.4':
Issue #16000: Convert test_curses to use unittest
https://hg.python.org/cpython/rev/f598d0014d07

New changeset b7b49f26a87b by Zachary Ware in branch 'default':
Issue #16000: Convert test_curses to use unittest
https://hg.python.org/cpython/rev/b7b49f26a87b

--
nosy: +python-dev

___
Python tracker 

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



[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray

Changes by R. David Murray :


--
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> imaplib.IMAP4() ends with "Name or service not known" on Fedora 
18

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

The linked docs say: """an unexpected minor revision number means that the file 
can be read but will not reveal its full contents, when parsed by a program 
that supports only smaller minor revision numbers""".

Unless there an important piece of contents that can be missed, I would say a 
warning is more of a distraction here.

--
nosy: +pitrou

___
Python tracker 

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



[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ethan Furman

Changes by Ethan Furman :


--
nosy: +ethan.furman

___
Python tracker 

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



[issue22660] Review ssl docs for security recommendations

2014-10-17 Thread Antoine Pitrou

New submission from Antoine Pitrou:

The current ssl documentation has a number of statements which may need 
updating, particularly wrt. SSLv3.

--
assignee: docs@python
components: Documentation
messages: 229590
nosy: alex, christian.heimes, docs@python, dstufft, giampaolo.rodola, janssen, 
pitrou
priority: normal
severity: normal
stage: needs patch
status: open
title: Review ssl docs for security recommendations
type: behavior
versions: Python 2.7, Python 3.4, Python 3.5

___
Python tracker 

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



[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

Berker, it looks like the 3.3 behaviour was buggy: TestTreatment isn't run at 
all! Instead, it should be run and consider failures as success.

So your patch appears more correct than what 3.3 did.

--

___
Python tracker 

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



[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

As for bugfix releases, I think we should take the time and consider what other 
software packages will decide.

--
versions:  -Python 3.1, Python 3.2, Python 3.5

___
Python tracker 

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



[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

So, I've disabled SSLv3 in _create_stdlib_context() for the next feature 
release (3.5). By the time it is released, we can consider SSLv3 will be dead.

Related news:
- Opera doesn't disable SSLv3 yet, but implements custom countermeasures:
http://blogs.opera.com/security/2014/10/security-changes-opera-25-poodle-attacks/
- Mozilla doesn't disable SSLv3 yet (it will be disabled in 3 months):
https://blog.mozilla.org/security/2014/10/14/the-poodle-attack-and-the-end-of-ssl-3-0/

--

___
Python tracker 

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



[issue22638] ssl module: the SSLv3 protocol is vulnerable ("POODLE" attack)

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e971f3c57502 by Antoine Pitrou in branch 'default':
Issue #22638: SSLv3 is now disabled throughout the standard library.
https://hg.python.org/cpython/rev/e971f3c57502

--
nosy: +python-dev

___
Python tracker 

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



[issue16802] fileno argument to socket.socket() undocumented

2014-10-17 Thread Berker Peksag

Berker Peksag added the comment:

The actual signature is now

socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None)

but, the fileno argument still needs to be documented.

--
nosy: +berker.peksag
stage: needs patch -> patch review
versions: +Python 3.5 -Python 3.2, Python 3.3

___
Python tracker 

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



[issue22659] SyntaxError in the configure_ctypes

2014-10-17 Thread Billy

New submission from Billy:

Hi all,

I have a issue with the cross-compilation, here I let it:

  File "../src/setup.py", line 1849
exec(f.read(), globals(), fficonfig)
SyntaxError: unqualified exec is not allowed in function 'configure_ctypes' it 
contains a nested function with free variables
make[1]: *** [sharedmods] Error 1

Who wants to help me, please

Best regards.

--
components: Cross-Build
messages: 229584
nosy: bill9889
priority: normal
severity: normal
status: open
title: SyntaxError in the configure_ctypes
type: compile error
versions: Python 3.4

___
Python tracker 

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



[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin

James Goodwin added the comment:

I do see that.  I agree that this is a duplicate of that one.

--

___
Python tracker 

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



[issue21417] Compression level for zipfile

2014-10-17 Thread Berker Peksag

Changes by Berker Peksag :


--
nosy: +berker.peksag

___
Python tracker 

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



[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

I think this is actually a bug, rather than a doc bug.  See issue 18540.  if 
you agree, we'll close this as a duplicate of that one.

--
nosy: +r.david.murray

___
Python tracker 

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



[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin

New submission from James Goodwin:

The IMAP4 Example for Python 3.4 (Section 21.15.2) does not show the 
appropriate host information for the example to work.  

Suggested fix would be to change the line "M = imaplib.IMAP4()" to "M = 
imaplib.IMAP4('localhost')"  This will bring the example inline with the poplib 
example (Section 21.14.2).

--
assignee: docs@python
components: Documentation
messages: 229581
nosy: James.Goodwin, docs@python
priority: normal
severity: normal
status: open
title: IMAP4 Example lacking host information
versions: Python 3.4

___
Python tracker 

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



[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

It should be 'custom', since that will actually test case sensitivity, which 
'gets' would not.

--

___
Python tracker 

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



[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread R. David Murray

R. David Murray added the comment:

You might find issue 5890 to be interesting reading.  It's been long enough 
that I forget the details, but I think the short answer is "yes, property is 
special cased".   So probably what you want to do is subclass property.

Given the knock-on issue that fix caused, I've always been a little bit 
uncomfortable with it.  Perhaps you will see a way to generalize things.

--
nosy: +r.david.murray

___
Python tracker 

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



[issue22186] Typos in .py files

2014-10-17 Thread Berker Peksag

Changes by Berker Peksag :


--
nosy: +berker.peksag
stage:  -> commit review

___
Python tracker 

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



[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Zachary Ware

Zachary Ware added the comment:

It grafted very easily, so it turns out to be "yes" :)

--
versions: +Python 2.7

___
Python tracker 

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



[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 430aaeaa8087 by Zachary Ware in branch '2.7':
Issue #20221: Removed conflicting (or circular) hypot definition
https://hg.python.org/cpython/rev/430aaeaa8087

--

___
Python tracker 

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



[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread Terry J. Reedy

Terry J. Reedy added the comment:

If Python itself works correctly on a machine, it is a bug for a test to say 
that is it not, by failing.  Should we change
-response = self.request('/', method='get')
to
+response = self.request('/', method='gets')
or
+response = self.request('/', method='custom')

or conditionally, on type(status), change the test from assertEqual to (after 
substitutions) assertIn(response.status, (200,501))? David, do you have a 
preference?  or should I flip a coin?

--

___
Python tracker 

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



[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset dae99db70336 by Benjamin Peterson in branch '2.7':
remove link to the 'original package specification'; I doubt it's useful 
anymore (closes #22657)
https://hg.python.org/cpython/rev/dae99db70336

--
nosy: +python-dev
resolution:  -> fixed
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Douglas Naphas

New submission from Douglas Naphas:

Section 6.12 of the Python 2.x language reference 
(https://docs.python.org/2/reference/simple_stmts.html#the-import-statement) 
has a link to "The original specification for packages" to 
http://www.python.org/doc/essays/packages.html, which is not found.

--
assignee: docs@python
components: Documentation
messages: 229574
nosy: docs@python, douglasnaphas
priority: normal
severity: normal
status: open
title: Bad link to packages specification in language reference 2.x sec 6.12
versions: Python 2.7

___
Python tracker 

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



[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou

Antoine Pitrou added the comment:

The patch's approach looks reasonable to me.

--
nosy: +pitrou

___
Python tracker 

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



[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou

Changes by Antoine Pitrou :


--
assignee: docs@python -> 
components: +Library (Lib) -Documentation
stage:  -> patch review
versions: +Python 3.5 -Python 2.7, Python 3.2, Python 3.3, Python 3.4

___
Python tracker 

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



[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ram Rachum

New submission from Ram Rachum:

The builtin `property` lets you specify a `doc` argument for your properties, 
which is great because then it shows up in `help`. So I figured that when I'm 
writing my own descriptor, I could set `__doc__` on it and have `help` use it. 
Not so, `help` ignores it. 

See this example:

class Property(object):
"Emulate PyProperty_Type() in Objects/descrobject.c"

def __init__(self, fget=None, fset=None, fdel=None, doc=None):
self.fget = fget
self.fset = fset
self.fdel = fdel
if doc is None and fget is not None:
doc = fget.__doc__
self.__doc__ = doc

def __get__(self, obj, objtype=None):
if obj is None:
return self
if self.fget is None:
raise AttributeError("unreadable attribute")
return self.fget(obj)

def __set__(self, obj, value):
if self.fset is None:
raise AttributeError("can't set attribute")
self.fset(obj, value)

def __delete__(self, obj):
if self.fdel is None:
raise AttributeError("can't delete attribute")
self.fdel(obj)

def getter(self, fget):
return type(self)(fget, self.fset, self.fdel, self.__doc__)

def setter(self, fset):
return type(self)(self.fget, fset, self.fdel, self.__doc__)

def deleter(self, fdel):
return type(self)(self.fget, self.fset, fdel, self.__doc__)


class A:
x = property(lambda self: 3,
 doc='Helpful text')

y = Property(lambda self: 7,
 doc='More Helpful text')


help(A.x) # Shows 'Helpful text'
help(A.y) # Does not show 'More Helpful text'


It seems that `property` is special-cased or something. I want to be able to 
set a docstring on my own descriptors.

--
components: Library (Lib)
messages: 229572
nosy: cool-RR
priority: normal
severity: normal
status: open
title: `help` ignores `__doc__` of descriptors
versions: Python 3.4

___
Python tracker 

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



[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill

Aaron Hill added the comment:

Does anyone have any thoughts about throwing a warning for an unexpected minor 
revision?

--

___
Python tracker 

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



[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Cédric Krier

Cédric Krier added the comment:

So what about this patch?
It adds a delocalize method while keeping the atof func parameter for backward 
compatibility.

--
Added file: http://bugs.python.org/file36955/delocalize.patch

___
Python tracker 

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



[issue22653] Crash in insertdict

2014-10-17 Thread Georg Brandl

Georg Brandl added the comment:

This is not a crash, but an abort, so it's not a security issue.

--

___
Python tracker 

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



[issue22646] Set SMTPHandler's "credentials" through "logging.config.dictConfig".

2014-10-17 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 3ba23c6f7986 by Vinay Sajip in branch '2.7':
Issue #22646: Accept list as well as tuple to support initialisation via 
dictConfig().
https://hg.python.org/cpython/rev/3ba23c6f7986

New changeset d15708f13266 by Vinay Sajip in branch '3.4':
Issue #22646: Accept list as well as tuple to support initialisation via 
dictConfig().
https://hg.python.org/cpython/rev/d15708f13266

New changeset bcc3f167a30b by Vinay Sajip in branch 'default':
Closes #22646: Accept list as well as tuple to support initialisation via 
dictConfig().
https://hg.python.org/cpython/rev/bcc3f167a30b

--
nosy: +python-dev
resolution:  -> fixed
stage:  -> resolved
status: open -> closed

___
Python tracker 

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