[Python-Dev] Summary of Python tracker Issues

2016-11-18 Thread Python tracker

ACTIVITY SUMMARY (2016-11-11 - 2016-11-18)
Python tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue.
Do NOT respond to this message.

Issues counts and deltas:
  open5584 (+25)
  closed 34909 (+43)
  total  40493 (+68)

Open issues with patches: 2421 


Issues opened (51)
==

#28032: --with-lto builds segfault in many situations
http://bugs.python.org/issue28032  reopened by koobs

#28671: SSL server requesting client certificates should send CA list
http://bugs.python.org/issue28671  opened by kchen

#28672: Explain in the "Data Model" document why arguments to __init__
http://bugs.python.org/issue28672  opened by João.Sebastião.de.Oliveira.Bueno

#28673: When using pyro4 with more than 15 threads, python 2.7.12 core
http://bugs.python.org/issue28673  opened by pwp333

#28675: about PEP 528 / PEP 529
http://bugs.python.org/issue28675  opened by Big Stone

#28677: difficult to parse sentence structure in "When an instance att
http://bugs.python.org/issue28677  opened by viorel

#28680: bdist_wininst generated 64-bit executable looks for 3.5-32
http://bugs.python.org/issue28680  opened by Timothy Widrick

#28681: About function renaming in the tutorial
http://bugs.python.org/issue28681  opened by xfq

#28682: Bytes support in os.fwalk()
http://bugs.python.org/issue28682  opened by serhiy.storchaka

#28683: bind() on a unix socket raises PermissionError on Android for 
http://bugs.python.org/issue28683  opened by xdegaye

#28684: [asyncio] bind() on a unix socket raises PermissionError on An
http://bugs.python.org/issue28684  opened by xdegaye

#28685: Optimizing list.sort() by performing safety checks in advance
http://bugs.python.org/issue28685  opened by elliot.gorokhovsky

#28686: py.exe ignored PATH when using python3 shebang
http://bugs.python.org/issue28686  opened by wdhwg001

#28687: Python 2.7.12 windows x64 installer fails after previous bad u
http://bugs.python.org/issue28687  opened by Igor.Skochinsky

#28688: Warning -- warnings.filters was modified by test_warnings
http://bugs.python.org/issue28688  opened by haypo

#28689: OpenSSL 1.1.0c test failures
http://bugs.python.org/issue28689  opened by christian.heimes

#28692: gettext: deprecate selecting plural form by fractional numbers
http://bugs.python.org/issue28692  opened by serhiy.storchaka

#28693: No HKSCS support in Windows cp950
http://bugs.python.org/issue28693  opened by Artoria2e5

#28694: tkinter interface to fontchooser
http://bugs.python.org/issue28694  opened by Lance Ware

#28695: Add SSL_CTX_set_client_cert_engine
http://bugs.python.org/issue28695  opened by christian.heimes

#28696: imap from ThreadPool hangs by an exception in a generator func
http://bugs.python.org/issue28696  opened by lev-veshnyakov

#28697: asyncio.Lock, Condition, Semaphore docs don't mention `async w
http://bugs.python.org/issue28697  opened by ulope

#28698: Python 3.x ctypes c_wchar_p return is different from official 
http://bugs.python.org/issue28698  opened by Alex Wang

#28699: Imap from ThreadPool behaves unexpectedly
http://bugs.python.org/issue28699  opened by lev-veshnyakov

#28700: test_dbm failure: KeyError: b'0' (intermittent in 3.5, reliabl
http://bugs.python.org/issue28700  opened by gward

#28702: Confusing error message when None used in expressions, eg. "'N
http://bugs.python.org/issue28702  opened by gward

#28705: Clean up design FAQ question about compiling to C
http://bugs.python.org/issue28705  opened by brett.cannon

#28706: msvc9compiler does not find a vcvarsall.bat of Visual C++ for 
http://bugs.python.org/issue28706  opened by jyrkih

#28707: add 'directory' option to the http.server module
http://bugs.python.org/issue28707  opened by matrixise

#28708: Low FD_SETSIZE limit on Windows
http://bugs.python.org/issue28708  opened by David Hirschfeld

#28709: PyStructSequence_NewType is broken; makes GC type without sett
http://bugs.python.org/issue28709  opened by josh.r

#28710: Sphinx incompatible markup in configparser.ConfigParser.
http://bugs.python.org/issue28710  opened by Patrick Lehmann

#28711: IDLE doesn't open
http://bugs.python.org/issue28711  opened by bg90299

#28712: Non-Windows mappings for a couple of Windows code pages
http://bugs.python.org/issue28712  opened by Artoria2e5

#28714: Addition to Documentation of configparser.ConfigParser.write()
http://bugs.python.org/issue28714  opened by georgefischhof

#28715: Check result of PyUnicode_AsUTF8
http://bugs.python.org/issue28715  opened by serhiy.storchaka

#28716: Fractions instantiation revisited
http://bugs.python.org/issue28716  opened by wolma

#28718: '*' matches entire path in fnmatch.translate
http://bugs.python.org/issue28718  opened by Jim Nasby

#28719: zipfile increase in size
http://bugs.python.org/issue28719  opened by X-Istence

#28722: doctest example exit status
http://bugs.python.org/issue28722  opened by Brainix

#28724: Add method send_io, recv_io to the socket

Re: [Python-Dev] Recent changes to PyCodeObject

2016-11-18 Thread Brett Cannon
I know you got your answer to why the change occurred, but a patch to
update any outdated comments would be appreciated. :)

On Thu, 17 Nov 2016 at 07:55 Ned Batchelder  wrote:

> On 11/17/16 10:09 AM, Cody Piersall wrote:
> > On Wed, Nov 16, 2016 at 6:18 PM, Ned Batchelder 
> wrote:
> >> When I added Python 3.6 support to coverage.py, I posted a Mac wheel to
> >> PyPI: https://pypi.python.org/pypi/coverage/  That wheel was built
> >> against 3.6a3, the latest version at the time.  When I use it now on
> >> 3.6b3, it doesn't work right.  The reason is that the co_firstlineno
> >> field in PyCodeObject moved in September, as part of the PEP 523 work:
> >>
> https://github.com/python/cpython/commit/f1e6d88b3ca2b56d51d87b6b38ea1870c5d9490c
> >>
> >> The docs say that PyCodeObject can change at any time, but I don't see
> >> why the field had to move in the first place.  Was this needed?
> > Christian Heimes had the idea so that memory consumption wouldn't be
> > impacted by adding co_extra to the struct:
> > https://mail.python.org/pipermail/python-dev/2016-August/145961.html
> >
>
> Thanks, I should have searched :)
>
> --Ned.
> ___
> Python-Dev mailing list
> Python-Dev@python.org
> https://mail.python.org/mailman/listinfo/python-dev
> Unsubscribe:
> https://mail.python.org/mailman/options/python-dev/brett%40python.org
>
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] New problem accessing tracker with Firefox 50.0

2016-11-18 Thread Terry Reedy
Starting today, while reviewing the "Summary of Python tracker issues", 
I get the following for about half the clicks.


"""
Secure Connection Failed

An error occurred during a connection to bugs.python.org. A PKCS #11 
module returned CKR_DEVICE_ERROR, indicating that a problem has occurred 
with the token or slot. Error code: SEC_ERROR_PKCS11_DEVICE_ERROR


The page you are trying to view cannot be shown because the 
authenticity of the received data could not be verified.

Please contact the website owners to inform them of this problem.

[   Try Again   ]
"""

So far, the Try Again button has always worked.

I believe I upgraded Firefox (to 50.0) just last night, or possibly the 
night before.


--
Terry Jan Reedy

___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] New problem accessing tracker with Firefox 50.0

2016-11-18 Thread Oleg Broytman
Hi!

On Fri, Nov 18, 2016 at 02:48:50PM -0500, Terry Reedy  wrote:
> Starting today, while reviewing the "Summary of Python tracker issues", I
> get the following for about half the clicks.
> 
> """
> Secure Connection Failed
> 
> An error occurred during a connection to bugs.python.org. A PKCS #11 module
> returned CKR_DEVICE_ERROR, indicating that a problem has occurred with the
> token or slot. Error code: SEC_ERROR_PKCS11_DEVICE_ERROR
> 
> The page you are trying to view cannot be shown because the authenticity
> of the received data could not be verified.
> Please contact the website owners to inform them of this problem.
> 
> [   Try Again   ]
> """
> 
> So far, the Try Again button has always worked.
> 
> I believe I upgraded Firefox (to 50.0) just last night, or possibly the
> night before.

   I upgraded to Firefox 50.0 a day ago and can connect to
https://bugs.python.org without any problem.

> -- 
> Terry Jan Reedy

Oleg.
-- 
 Oleg Broytmanhttp://phdru.name/p...@phdru.name
   Programmers don't die, they just GOSUB without RETURN.
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] New problem accessing tracker with Firefox 50.0

2016-11-18 Thread Martin Panter
On 18/11/2016, Terry Reedy  wrote:
> Starting today, while reviewing the "Summary of Python tracker issues",
> I get the following for about half the clicks.
>
> """
> Secure Connection Failed
>
> An error occurred during a connection to bugs.python.org. A PKCS #11
> module returned CKR_DEVICE_ERROR, indicating that a problem has occurred
> with the token or slot. Error code: SEC_ERROR_PKCS11_DEVICE_ERROR
>
>  The page you are trying to view cannot be shown because the
> authenticity of the received data could not be verified.
>  Please contact the website owners to inform them of this problem.
>
> [   Try Again   ]
> """
>
> So far, the Try Again button has always worked.
>
> I believe I upgraded Firefox (to 50.0) just last night, or possibly the
> night before.

Yesterday I started seeing this behaviour too. I have Firefox 43 and
haven’t updated any relevant libraries recently, so I assumed it was
the server’s fault :)
___
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com