[issue27106] configparser.__all__ is incomplete

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 739528288996 by Martin Panter in branch 'default': Issue #27106: Add test for configparser.__all__ https://hg.python.org/cpython/rev/739528288996 -- nosy: +python-dev ___ Python tracker

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 910e293663cb by Yury Selivanov in branch 'default': Issue #28003: Fix a compiler warning https://hg.python.org/cpython/rev/910e293663cb -- ___ Python tracker _

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Ivan Levkivskyi
New submission from Ivan Levkivskyi: Guido, Here is a patch to remove com2ann (also it looks like Yury added a second entry for me in MISC/Acks, so that I am removing it). -- components: Demos and Tools files: remove-com2ann.diff keywords: patch messages: 275274 nosy: gvanrossum, levki

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks, Martin, it should be fixed now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue27292] Warn users that os.urandom() prior to 3.6 can return insecure values

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: > Though I imagine even Python 3.6’s os.urandom() will still fall back to > /dev/urandom (with potential entropy problem) on older Linux versions. Right, but you should be more specific in the doc. os.urandom() is unsecure if and only if: * getrandom() is not

[issue28003] PEP 525 asynchronous generators implementation

2016-09-09 Thread Martin Panter
Martin Panter added the comment: I am getting a new GCC warning: ./Python/sysmodule.c:1425:28: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types] {"set_asyncgen_hooks", sys_set_asyncgen_hooks, ^~ ./Python/sy

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: Context: "Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations." > Here is a patch to remove com2ann Can you please just explain why you don't want this tool? -- nosy: +haypo, yselivanov ___ Python tra

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Victor, Guido proposed to publish com2ann script in a separate repo on github. -- ___ Python tracker ___ _

[issue27867] various issues due to misuse of PySlice_GetIndicesEx

2016-09-09 Thread Nick Coghlan
Nick Coghlan added the comment: As in, for arguments that have __index__() methods, do the conversion to a true Python integer eagerly when the slice is built rather than lazily when slice.indices() (or the C-level equivalent) is called? That actually seems like a potentially plausible future

[issue16112] platform.architecture does not correctly escape argument to /usr/bin/file

2016-09-09 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Shouldn't this ticket be closed ? platform is using subprocess on both the 2.7 and trunk, so the issue should be fixed - and indeed I cannot reproduce it anymore. -- ___ Python tracker

[issue28005] Broken encoding modules are silently skipped.

2016-09-09 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Yes, that's intended. See e.g. the mbcs codec. If a search function gets an ImportError, it interprets this as "codec is not available/working", and then gives other search functions a chance to find a working one. --

[issue16112] platform.architecture does not correctly escape argument to /usr/bin/file

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: Oh right, I didn't read the history of the issue. _syscmd_file() doesn't use popen() anymore, but subprocess, so the issue can now be closed. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue16112] platform.architecture does not correctly escape argument to /usr/bin/file

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: Note: Other platform functions still use os.popen(), you might open new issues. _syscmd_ver: for cmd in ('ver', 'command /c ver', 'cmd /c ver'): try: pipe = os.popen(cmd) ... def _syscmd_uname(option, default=''): ... f

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2016-09-09 Thread Francisco Couzo
Changes by Francisco Couzo : -- keywords: +patch Added file: http://bugs.python.org/file44490/format.patch ___ Python tracker ___ ___

[issue28039] x86 Tiger buildbot needs __future__ with_statement

2016-09-09 Thread Martin Panter
New submission from Martin Panter: Revision 7eaaac5ad4e8 removed a bunch of “with_statement” __future__ imports, including in Tools/hg/hgtouch.py. This is causing a buildbot to fail; presumably it has Python < 2.6 for Mercurial: http://buildbot.python.org/all/builders/x86%20Tiger%203.x/builds/

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2016-09-09 Thread Francisco Couzo
Changes by Francisco Couzo : -- nosy: +franciscouzo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Matthias Bussonnier
New submission from Matthias Bussonnier: I've been able to reliably trigger dict.pop to raise a system error: See https://github.com/pytest-dev/pytest/issues/1925 I have issues getting a small test-case that triggers it, though by changing the pop method of dict to print the returned value:

[issue27106] configparser.__all__ is incomplete

2016-09-09 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue27867] various issues due to misuse of PySlice_GetIndicesEx

2016-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Then there is a design question. I believe that after all we should expose these two new functions publicly. And the question is about function names and the order of arguments. Currently signatures are: int _PySlice_Unpack(PyObject *r, Py_ssize_t *start, Py

[issue23404] 'make touch' does not work with git clones of the source repository

2016-09-09 Thread Martin Panter
Martin Panter added the comment: Perhaps you can use “make -t ” instead of “make touch”. If you know the filename you want to avoid regenerating, that would not need any extra tools, no Mercurial or Git or any other version control. E.g.: make -t Include/Python-ast.h -- nosy: +martin.

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Matthias Bussonnier
Matthias Bussonnier added the comment: Oh, also I've bisect it to the compact-dict commit, and the exact instance of __dict__.pop that fails depends on the machine. Reliable same location on travis-ci and locally, but travis-ci location and local differ on where it triggers this. -- _

[issue9949] os.path.realpath on Windows does not follow symbolic links

2016-09-09 Thread Christian Åkerström
Christian Åkerström added the comment: Any update on this? Would be great with a fix for python symlinks on Windows. -- nosy: +Christian Åkerström ___ Python tracker ___ _

[issue16487] Allow ssl certificates to be specified from memory rather than files.

2016-09-09 Thread Christian Heimes
Christian Heimes added the comment: Thanks for your patch. I have left some comments (sorry for the delay). -- versions: +Python 3.7 -Python 3.4 ___ Python tracker ___ __

[issue9949] os.path.realpath on Windows does not follow symbolic links

2016-09-09 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue26171] heap overflow in zipimporter module

2016-09-09 Thread Christian Heimes
Changes by Christian Heimes : -- priority: -> release blocker versions: +Python 3.3 -Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker ___ __

[issue27781] Change sys.getfilesystemencoding() on Windows to UTF-8

2016-09-09 Thread Mark Dickinson
Mark Dickinson added the comment: It looks as though this change might have broken the compile on OS X. On my OS X 10.9 machine, building from a clean Git checkout of the master branch fails; the tail of the failed build looks like this: ./python.exe -E -S -m sysconfig --generate-posix-vars ;\

[issue1602] windows console doesn't print or input Unicode

2016-09-09 Thread sorin
Changes by sorin : -- nosy: -sorin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mail

[issue27781] Change sys.getfilesystemencoding() on Windows to UTF-8

2016-09-09 Thread Mark Dickinson
Mark Dickinson added the comment: It looks as though this change in posixmodule.c is the cause: #ifdef MS_WINDOWS -if (path->wide) -fd = _wopen(path->wide, flags, mode); -else +fd = _wopen(path->wide, flags, mode); #endif #ifdef HAVE_OPENAT if (dir

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Christian Heimes
Christian Heimes added the comment: I have deprecated cafile, capath and cadefault for urlopen(). The function didn't pop up on my radar because I was looking for certfile and cert_file, not cafile. I also added deprecations to the documentation of SSLSocket.read and write. -- __

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Christian Heimes
Changes by Christian Heimes : -- keywords: +patch Added file: http://bugs.python.org/file44492/ssl_deprecations.patch ___ Python tracker ___ _

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Christian Heimes
Changes by Christian Heimes : -- stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +haypo, methane ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Xiang Zhang added the comment: It looks to me the only reason to this is dk_lookup returns wrong value and I seem to find one in lookdict. Not sure this can solve the problem. -- nosy: +xiang.zhang ___ Python tracker

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Changes by Xiang Zhang : -- keywords: +patch Added file: http://bugs.python.org/file44493/issue28040.patch ___ Python tracker ___ ___

[issue28041] Inconsistent behavior: Get st_nlink from os.stat() and os.scandir()

2016-09-09 Thread Mohanson Leaf
New submission from Mohanson Leaf: os.stat(file).st_nlink gives 1 but same file's st_nlink from os.scandir(dir) gives 0. """ Inconsistent behavior: Get st_nlink from os.stat() and os.scandir() Platform: Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on w

[issue27889] ctypes interfers with signal handling

2016-09-09 Thread Andre Merzky
Andre Merzky added the comment: I would appreciate any suggestion on how to avoid this problem -- otherwise it seems that I can't reliably use signals in threaded contexts at all :( Thanks, Andre. -- ___ Python tracker

[issue27213] Rework CALL_FUNCTION* opcodes

2016-09-09 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27213] Rework CALL_FUNCTION* opcodes

2016-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm going to push the patch today. But changes to test_extcall look as a regression to me. -- ___ Python tracker ___

[issue25257] In subject line email library inserts unwanted space after a thousands comma in a number

2016-09-09 Thread Matthew Jacobi
Matthew Jacobi added the comment: Is there a workaround for this for people on python2? Would installing https://pypi.python.org/pypi/email/6.0.0a1 fix it? > testing release of email6 > This is a standalone version of the version of email package that will ship > with Python 3.3. This version

[issue25852] smtplib's SMTP.connect() should store the server name in ._host for .starttls()

2016-09-09 Thread gigaplastik
gigaplastik added the comment: Here is the updated (3.6.0a4+) patch for the issue with the unit test included. My unit test only checks for this issue particular artifacts, it does not test that .starttls actually works. This is because the current test suite for smtplib (Lib/test/test_smtplib

[issue27364] Deprecate invalid escape sequences in str/bytes

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 98a57845c8cc by Martin Panter in branch 'default': Issue #27364: Raw strings to avoid deprecated escaping in com2ann.py https://hg.python.org/cpython/rev/98a57845c8cc -- ___ Python tracker

[issue27952] Finish converting fixcid.py from regex to re

2016-09-09 Thread Martin Panter
Martin Panter added the comment: It would be nice to fix this so that the tests pass with -Werror. Here is a quick patch: * Fix the deprecated non-escapes * Make all the regular expressions raw strings * Fix bugs with parsing escaped quotes in C strings and char literals * Adapt from old regex

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Martin Panter
Martin Panter added the comment: How does that tie in with SSLObject.read() and write(). I have never used this class, but the documentation refers back to SSLSocket. It seems there are no recv() etc methods to use as an alternative. So maybe deprecate read() and write() on SSLSocket only, and

[issue27952] Finish converting fixcid.py from regex to re

2016-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Martin. The patch in general LGTM, but see comments on Rietveld. -- ___ Python tracker ___

[issue18329] for line in socket.makefile() speed degradation

2016-09-09 Thread Марк Коренберг
Марк Коренберг added the comment: mmarkk@mmwork:~$ python2.7 --version Python 2.7.12 mmarkk@mmwork:~$ python2.7 ./qwe.py TCP mode, makefile method. 292731.3 lines per second (279.2 MB/s). Delay is 3.42 seconds TCP mode, fdopen method. 2410875.9 lines per second (2299.2 MB/s). Delay is 0.41

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: After some thinking, maybe it could be still kept in Tools but developed on github as it is done for typing and asyncio? I have no preference here, core devs should decide. -- ___ Python tracker

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread INADA Naoki
INADA Naoki added the comment: I've forgot to convert split table into combined table when del and .pop(). I'm sorry, and thanks to finding it. -- Added file: http://bugs.python.org/file44497/fix-compact-dict-deletion.patch ___ Python tracker

[issue27137] Python implementation of `functools.partial` is not a class

2016-09-09 Thread Emanuel Barry
Emanuel Barry added the comment: The patch LGTM and applies fine. Looks like there's no need to wait for beta 2 after all; thanks Serhiy! -- ___ Python tracker ___ _

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Nick Coghlan
Nick Coghlan added the comment: +1 for directing all programmatic configuration through SSLContext However, implicitly verifying certificates for protocols other than HTTPS needs to be contingent on a properly designed approach to configuration that leaves informed users in full control of the

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread INADA Naoki
Changes by INADA Naoki : Added file: http://bugs.python.org/file44498/fix-compact-dict-deletion.patch ___ Python tracker ___ ___ Python-bugs-l

[issue28042] Coverity Scan defects in new dict code

2016-09-09 Thread Christian Heimes
New submission from Christian Heimes: Coverity Scan complains about 30 defects in the new code. Inada, I sent you an invite. 30 new defect(s) introduced to Python found with Coverity Scan. 3 defect(s), reported by Coverity Scan earlier, were marked fixed in the recent build analyzed by Coverit

[issue28022] SSL releated deprecation for 3.6

2016-09-09 Thread Christian Heimes
Christian Heimes added the comment: In the mean time I have reconsidered my position. How about we *document* that a future version of Python will very all TLS/SSL connections by default. Users have to explicitly pass an unverified context if they still want the old behavior. --

[issue27948] f-strings: allow backslashes only in the string parts, not in the expression parts

2016-09-09 Thread Eric V. Smith
Eric V. Smith added the comment: Updated patch, works against HEAD. I added a few tests and tweaked some comments. My goal is to commit this today, before the 3.6b1 cutoff. I don't think there's much risk to it. I still need to update the PEP. -- Added file: http://bugs.python.org/fil

[issue28043] Sane defaults for SSLContext options and ciphers

2016-09-09 Thread Christian Heimes
New submission from Christian Heimes: I like to introduce sane defaults for SSLContext options and ciphers: Changed in version 3.6: The context is created with more secure default values. PROTOCOL_TLS is the default protocol. The options OP_NO_COMPRESSION, OP_CIPHER_SERVER_PREFERENCE, OP_SINGL

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Xiang Zhang added the comment: Are you sure INADA? The previous dict implementation has the same constraint but does merge in dict_pop. -- ___ Python tracker ___ ___

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Xiang Zhang added the comment: does should be does not. Sorry. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2016-09-09 Thread Eric V. Smith
Changes by Eric V. Smith : -- assignee: -> eric.smith versions: +Python 3.6 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list m

[issue27910] Doc/library/traceback.rst — references to tuples should be replaced with new FrameSummary object

2016-09-09 Thread Petr Viktorin
Petr Viktorin added the comment: This was a deliberate change in 3.5. Issue: https://bugs.python.org/issue17911 News entry: https://docs.python.org/3/whatsnew/3.5.html#traceback Why do you think it is a regression? Who would be the person that can decide if it is a doc bug or regression? -

[issue27999] Make "global after use" a SyntaxError

2016-09-09 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: I am attaching the patch. Yury, I also added you here, just in case you have time for this. Btw, while working on this I have found that the second restriction: """ Names listed in a global statement must not be ... in a for loop control target, class defini

[issue28044] Make the sidebar in the documentation follow the section automatically

2016-09-09 Thread Batiste
New submission from Batiste: Hi, Here is a small patch for the documentation that make the sidebar follow the headers while scrolling through a long page. http://imgur.com/UsrFAti Test on Chrome and Firefox. Seems to work like a charm. -- assignee: docs@python components: Documentati

[issue26971] python v3.5.1: sys.paths not respecting DESTDIRS and DESTSHARED

2016-09-09 Thread Xavier de Gaye
Xavier de Gaye added the comment: The problem can be reproduced as follows: Run the following commands to install python with a site configuration file that installs the libraries to lib64: export INSTALL_DIR=/some/path/to/install mkdir -p $INSTALL_DIR/share echo "test \"\$libdir\" = '\$

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread INADA Naoki
INADA Naoki added the comment: > Xiang Zhang added the comment: > > Are you sure INADA? The previous dict implementation has the same constraint > but does merge in dict_pop. > Yes. New dict implementation preserves insertion order. class A: ... a, b = A(), A() a.a, a.b, a.c = 1, 2, 3 b.

[issue27999] Make "global after use" a SyntaxError

2016-09-09 Thread Ivan Levkivskyi
Ivan Levkivskyi added the comment: Added few tests to the patch -- Added file: http://bugs.python.org/file44503/patch-v2.diff ___ Python tracker ___ _

[issue26971] python v3.5.1: sys.paths not respecting DESTDIRS and DESTSHARED

2016-09-09 Thread Xavier de Gaye
Xavier de Gaye added the comment: The problem is that Makefile and Modules/getpath.c are not consistent: * Makefile uses $(LIBDIR)/python$(VERSION)/lib-dynload as the location of the installed shared libraries and in this issue, it happens that LIBDIR is not ${exec_prefix}/lib but is ${exec_pre

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Matthias Bussonnier
Matthias Bussonnier added the comment: > I'm sorry, and thanks to finding it. No worries, that's what nightly are for right ? And I only dug up a failing tests :-) Thanks to you for writing this ! > [snip] > This is difficult for key-sharing dict (aka. split table). I'm not going to pretend I

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Changes by Xiang Zhang : Removed file: http://bugs.python.org/file44493/issue28040.patch ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread Xiang Zhang
Changes by Xiang Zhang : -- Removed message: http://bugs.python.org/msg275292 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue28044] Make the sidebar in the documentation follow the section automatically

2016-09-09 Thread SilentGhost
SilentGhost added the comment: I get the following warning in Firefox's Developer console: This site appears to use a scroll-linked positioning effect. This may not work well with asynchronous panning; see https://developer.mozilla.org/docs/Mozilla/Performance/ScrollLinkedEffects for further

[issue28040] compact dict : SystemError: returned NULL without setting an error.

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: I would really appreciate if someone can write an unit test. I'm not confident to fix a bug without unit test, on such tricky part of Python internals (splitted/combined dict). -- ___ Python tracker

[issue27959] Add 'oem' encoding

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e80a157ea66 by Steve Dower in branch 'default': Revert #27959: ImportError within an encoding module should also skip the encoding https://hg.python.org/cpython/rev/4e80a157ea66 -- ___ Python tracker <

[issue27959] Add 'oem' encoding

2016-09-09 Thread Steve Dower
Steve Dower added the comment: Last commit was supposed to be for issue28005 -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue27781] Change sys.getfilesystemencoding() on Windows to UTF-8

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 801634d3c105 by Steve Dower in branch 'default': Issue #27781: Fixes uninitialized fd when !MS_WINDOWS and !HAVE_OPENAT https://hg.python.org/cpython/rev/801634d3c105 -- ___ Python tracker

[issue28008] PEP 530, asynchronous comprehensions implementation

2016-09-09 Thread Yury Selivanov
Changes by Yury Selivanov : Added file: http://bugs.python.org/file44504/asyncomp.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue28005] Broken encoding modules are silently skipped.

2016-09-09 Thread Steve Dower
Steve Dower added the comment: I reverted the change but wrote the wrong issue number. Also added a comment so the next person to encounter this realises it is the correct behaviour. New changeset 4e80a157ea66 by Steve Dower in branch 'default': Revert #27959: ImportError within an encoding mod

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 35447332ab19 by Guido van Rossum in branch 'default': Issue #28038: Remove Tools/parser/com2ann.py and its unit test. https://hg.python.org/cpython/rev/35447332ab19 -- nosy: +python-dev ___ Python tracker

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Guido van Rossum
Guido van Rossum added the comment: I just deleted it, lest people try to report bugs here or make changes. -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue28038] Remove com2ann script (will be in separate repo)

2016-09-09 Thread Guido van Rossum
Guido van Rossum added the comment: (The reason for the removal is that development of this tool is moving to https://github.com/ilevkivskyi/com2ann -- it was committed briefly as part of the PEP 526 patch.) On Fri, Sep 9, 2016 at 9:07 AM, Guido van Rossum wrote: > > Guido van Rossum added the

[issue22257] PEP 432: Redesign the interpreter startup sequence

2016-09-09 Thread Eric Snow
Eric Snow added the comment: It may be worth refactoring the patch relative to the new C99 support. -- nosy: +eric.snow ___ Python tracker ___ ___

[issue27781] Change sys.getfilesystemencoding() on Windows to UTF-8

2016-09-09 Thread Mark Dickinson
Mark Dickinson added the comment: That seems to have done the trick. Thanks! -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue27999] Make "global after use" a SyntaxError

2016-09-09 Thread Guido van Rossum
Guido van Rossum added the comment: I'll commit this. -- assignee: docs@python -> gvanrossum ___ Python tracker ___ ___ Python-bugs-li

[issue28039] x86 Tiger buildbot needs __future__ with_statement

2016-09-09 Thread Ned Deily
Ned Deily added the comment: We could also ask David, the buildbot owner, if he could update the Python used for hg. I'm pretty sure it's not the system Python since that's too old. -- nosy: +db3l, ned.deily ___ Python tracker

[issue12619] Automatically regenerate platform-specific modules

2016-09-09 Thread Zachary Ware
Zachary Ware added the comment: The platform-specific modules have been removed. -- nosy: +zach.ware resolution: -> out of date stage: -> resolved status: open -> closed superseder: -> Remove Lib/plat-*/* files ___ Python tracker

[issue24254] Make class definition namespace ordered by default

2016-09-09 Thread Ethan Furman
Ethan Furman added the comment: Is this going to be added back? Should I add __definition_order__ to Enum? -- ___ Python tracker ___

[issue1565071] update Lib/plat-linux2/IN.py

2016-09-09 Thread Zachary Ware
Zachary Ware added the comment: This file was moved long ago and has now been completely removed. -- nosy: +zach.ware resolution: -> out of date stage: needs patch -> resolved status: open -> closed superseder: -> Remove Lib/plat-*/* files ___ Pytho

[issue25257] In subject line email library inserts unwanted space after a thousands comma in a number

2016-09-09 Thread R. David Murray
R. David Murray added the comment: No, that is python3 code, it doesn't work on python2. There's no workaround other than to back port the fix. -- ___ Python tracker ___ __

[issue1602] windows console doesn't print or input Unicode

2016-09-09 Thread Steve Dower
Changes by Steve Dower : -- dependencies: -Python interactive console doesn't use sys.stdin for input resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue3990] The Linux2 platform definition is incorrect for alpha, hppa, mips, sparc

2016-09-09 Thread Zachary Ware
Zachary Ware added the comment: The platform-specific modules have been removed. -- nosy: +zach.ware resolution: -> out of date stage: needs patch -> resolved status: open -> closed superseder: -> Remove Lib/plat-*/* files ___ Python tracker

[issue26513] platform.win32_ver() broken in 2.7.11

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset aeb39d4475c5 by Steve Dower in branch '3.5': Issue #26513: Fixes platform module detection of Windows Server https://hg.python.org/cpython/rev/aeb39d4475c5 New changeset 67c50dd3fcea by Steve Dower in branch 'default': Issue #26513: Fixes platform m

[issue26513] platform.win32_ver() broken in 2.7.11

2016-09-09 Thread Steve Dower
Steve Dower added the comment: We now use 'product_type' on 3.5+ and 'product' on 2.7, so we should be good. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue19554] Enable all freebsd* host platforms

2016-09-09 Thread Zachary Ware
Zachary Ware added the comment: The platform-specific modules have been removed. -- nosy: +zach.ware resolution: -> out of date stage: -> resolved status: open -> closed superseder: -> Remove Lib/plat-*/* files ___ Python tracker

[issue24646] Python accepts SSL certificate that should be rejected on OSX

2016-09-09 Thread Ned Deily
Ned Deily added the comment: We will no longer use the OS X system OpenSSL for 3.6. -- resolution: not a bug -> third party stage: -> resolved status: pending -> closed ___ Python tracker _

[issue28044] Make the sidebar in the documentation follow the section automatically

2016-09-09 Thread R. David Murray
R. David Murray added the comment: -1. I don't like sites that do this, and don't want ours to be one of them. -- nosy: +r.david.murray ___ Python tracker ___ __

[issue27999] Make "global after use" a SyntaxError

2016-09-09 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks again Ivan! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pyth

[issue27999] Make "global after use" a SyntaxError

2016-09-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 804b71d43c85 by Guido van Rossum in branch 'default': Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal. https://hg.python.org/cpython/rev/804b71d43c85 -- nosy: +python-dev ___ P

[issue24254] Make class definition namespace ordered by default

2016-09-09 Thread Brett Cannon
Brett Cannon added the comment: Nope, PEP 520 has been updated to drop __definition_order__ and instead state that cls.__dict__ is an ordered mapping. -- ___ Python tracker ___

[issue27213] Rework CALL_FUNCTION* opcodes

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: > I'm going to push the patch today. I'm going to push the patch in ~10 min since I don't see it pushed yet. > But changes to test_extcall look as a regression to me. I agree that it looks like a regression, but it might be tricky to retrieve the function name

[issue27945] Various segfaults with dict

2016-09-09 Thread Emanuel Barry
Emanuel Barry added the comment: Ping. The built-in dict was considerably changed in #27350; do any of these issues still persist? -- ___ Python tracker ___

[issue28044] Make the sidebar in the documentation follow the section automatically

2016-09-09 Thread R. David Murray
R. David Murray added the comment: But thanks for the interest and writing the patch. Others may disagree with me and it may go in anyway :) -- ___ Python tracker ___ _

[issue27213] Rework CALL_FUNCTION* opcodes

2016-09-09 Thread STINNER Victor
STINNER Victor added the comment: > Please wait. I just have sat down at my computer. Oh, you are here :-) Go ahead! -- ___ Python tracker ___ __

[issue27213] Rework CALL_FUNCTION* opcodes

2016-09-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Please wait. I just have sat down at my computer. -- ___ Python tracker ___ ___ Python-bugs-list m

  1   2   3   4   >