[issue29551] unittest: TestSuite.debug() does not like subTest()

2017-02-13 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +ezio.melotti, michael.foord, pitrou, rbcollins type: crash -> behavior versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue29540] Add compact=True flag to json.dump/dumps

2017-02-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur with Serhiy and think this API change would be a net increase in complexity. FWIW, network transmission size issues can already be handled more effectively "Accept-Encoding: gzip, deflate". Bob, do you have any thoughts? -- assignee: ->

[issue29551] unittest: TestSuite.debug() does not like subTest()

2017-02-13 Thread Wolfgang Rohdewald
New submission from Wolfgang Rohdewald: the main code is appended in main.py if a test uses with self.subTest(), subTest() fails right in its first statement "if not self._outcome ..." because _outcome is None. In main.py, the commented runner.run(suite) would work correctly. If this is not

[issue29339] Interactive: Move to same indentation level as previousline

2017-02-13 Thread Matthias Bussonnier
Matthias Bussonnier added the comment: > IPython3 solved this issue by adding special magic functions, but this is not > a way for CPython. IPython 5 improve on that with prompt toolkit. It does not break paste, as prompt_toolkit has a bracketed-past mode, that most terminal emulator support

[issue24665] CJK support for textwrap

2017-02-13 Thread Florent Gallaire
Florent Gallaire added the comment: After discussion with Haypo, CJK support is now implemented as and option, disabled by default for backward compatibility reasons. PR on GitHub: https://github.com/python/cpython/pull/89 -- pull_requests: +56 ___

[issue6143] IDLE - an extension to clear the shell window

2017-02-13 Thread Alex
Alex added the comment: The ClearWindow.py extension works well with the specified shortcut, How can i invoke it in my source code to clear the window ? Thanks in advance. -- nosy: +Alex type: enhancement -> resource usage versions: +Python 2.7 -Python 3.6

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread INADA Naoki
INADA Naoki added the comment: PR 87 fixes the regression in 3.6 branch -- pull_requests: +55 ___ Python tracker ___

[issue29438] use after free in key sharing dict

2017-02-13 Thread INADA Naoki
INADA Naoki added the comment: All pull requests are merged. https://github.com/python/cpython/pull/17 (master) https://github.com/python/cpython/pull/39 (3.6) https://github.com/python/cpython/pull/40 (3.5) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread INADA Naoki
Changes by INADA Naoki : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread INADA Naoki
INADA Naoki added the comment: Thanks, Lemburg to pointing it out. Here is detail of the difference. ## PyEval_CallFunction(), PyEval_CallMethod() They are very similar to PyObject_CallFunction() and PyObject_CallMethod(). difference are: * PyEval_Call...() doesn't respect Py_SSIZE_T_CLEAN

[issue24241] webbrowser default browser detection and/or public API for _trylist.

2017-02-13 Thread David Steele
David Steele added the comment: See https://github.com/python/cpython/pull/85 -- ___ Python tracker ___ ___

[issue29481] 3.6.0 doc describes 3.6.1 feature - typing.Deque

2017-02-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Yes, we should put versionadded in the docs to augment the MISC/NEWS entries. Mariatta, do you want to take a crack at the patch? It should hit both 3.5 and 3.6 docs. -- nosy: +Mariatta ___ Python tracker

[issue11339] annotation for class being defined

2017-02-13 Thread Ivan Levkivskyi
Changes by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___

[issue28941] Update the link to Source Code in Python Docs from hg to github

2017-02-13 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: This was addressed in the very first pull request on CPython GitHub (Thanks, Brett ) Backported to 2.7, 3.5, and 3.6 -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker

[issue26752] Mock(2.0.0).assert_has_calls() raise AssertionError in two same calls

2017-02-13 Thread John W.
John W. added the comment: This also seems to apply to unittest.mock in Python3.4. I described my similar issue on SO: http://stackoverflow.com/questions/42212433/what-is-wrong-with-this-simple-py-test-use-case It seems like it may be the same issue described here. For reference, this is my

[issue29550] Mac build-installer touch step fails after github conversion

2017-02-13 Thread Ned Deily
Ned Deily added the comment: Thanks, I'll take a look. -- assignee: -> ned.deily nosy: +larry priority: normal -> release blocker ___ Python tracker ___

[issue29550] Mac build-installer touch step fails after github conversion

2017-02-13 Thread David Bolen
New submission from David Bolen: The "make touch" step during the Mac installer builds on the bolen-dmg build slave no longer works after the conversion to github, which breaks the daily builds on the 3.* branches. It looks like in issue 23404 Zachary disabled the touch step for the buildbots

[issue27593] Deprecate sys._mercurial and create sys._git

2017-02-13 Thread Ned Deily
Ned Deily added the comment: Yeah, I'll get to the non-Windows parts shortly. I'd been waiting for the transition to happen. -- ___ Python tracker ___

[issue29549] Improve docstring for str.index

2017-02-13 Thread Raymond Hettinger
New submission from Raymond Hettinger: The docstring for str.index() needs to be synced with the main documentation rather than presuming knowledge of str.find(). Currently it reads: >>> help(str.index) Help on method_descriptor: index(...) S.index(sub[, start[, end]]) -> int

[issue29403] mock's autospec's behavior on method-bound builtin functions is broken

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, michael.foord stage: -> patch review versions: -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker

[issue29541] Python3 error while building on Alt-F

2017-02-13 Thread Honza Skýpala
Honza Skýpala added the comment: 1. What's the result of ```./python -E```? Python 3.6.0 (default, Feb 13 2017, 08:16:44) [GCC 4.5.4 20120202 (prerelease)] on linux Type "help", "copyright", "credits" or "license" for more information. 2. Does `import crypt` run fine in ./python? No, gives

[issue29544] Allow login to bugs.python.org with Google account

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. Feature requests about bugs.python.org should be reported to http://psf.upfronthosting.co.za/roundup/meta/ -- nosy: +berker.peksag stage: -> resolved status: open -> closed ___ Python tracker

[issue29543] Allow login to bugs.python.org with email address

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report. Feature requests about bugs.python.org should be reported to http://psf.upfronthosting.co.za/roundup/meta/ -- nosy: +berker.peksag stage: -> resolved status: open -> closed ___ Python tracker

[issue26213] Document BUILD_*_UNPACK opcodes

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue29520] Documentation uses deprecated "defindex.html" Sphinx template

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> needs patch type: compile error -> enhancement versions: +Python 3.5, Python 3.6 ___ Python tracker

[issue29547] Add c code coverage to codecov

2017-02-13 Thread Brett Cannon
Brett Cannon added the comment: I have https://github.com/python/core-workflow/issues/2 sitting open for this specific idea. :) If Codecov will do the appropriate merging between coverage.py and lcov then I think it's worth a PR to set it up. -- nosy: +brett.cannon

[issue29546] A more helpful ImportError message

2017-02-13 Thread Brett Cannon
Changes by Brett Cannon : -- type: -> enhancement ___ Python tracker ___ ___

[issue29546] A more helpful ImportError message

2017-02-13 Thread Brett Cannon
Brett Cannon added the comment: So 'path' already exists on ImportError so tweaking the message when the path is known wouldn't be difficult (https://docs.python.org/3/library/exceptions.html?highlight=importerror#ImportError). -- nosy: +brett.cannon

[issue29518] 'for' loop not automatically breaking (index error on line of loop header)

2017-02-13 Thread Brett Cannon
Brett Cannon added the comment: Since Justin can't provide the original email, it could have been his setup, and the chances that range() is broken on Python 2.7 is extremely small, I'm closing this as not a bug. -- nosy: +brett.cannon resolution: -> not a bug stage: -> resolved

[issue29540] Add compact=True flag to json.dump/dumps

2017-02-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm -1. This adds the maintenance and learning burden and doesn't make the user code more clear. The reader needs to search what json.COMPACT means. -- nosy: +serhiy.storchaka ___ Python tracker

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Please note that the two sets of APIs are not identical, e.g. you cannot simply replace PyEval_CallObject() with PyObject_Call(), since the former applies a few extra checks and defaults, which the latter doesn't. -- nosy: +lemburg

[issue27593] Deprecate sys._mercurial and create sys._git

2017-02-13 Thread Steve Dower
Steve Dower added the comment: This is now blocking all releases for all versions. I'll try and make some time to update the Windows build scripts and project files, but if someone else gets there first feel free to post a PR. -- nosy: +benjamin.peterson, larry, steve.dower priority:

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +54 ___ Python tracker ___ ___

[issue29548] deprecate PyEval_Call*() functions.

2017-02-13 Thread INADA Naoki
New submission from INADA Naoki: As reading call.c, PyEval_Call* APIs are mostly duplicate of PyObject_Call* APIs. While they are not documented, they seems part of limited APIs. So we can't remove them easily. Let's deprecate them for now. -- components: Interpreter Core messages:

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Eric Snow
Eric Snow added the comment: > These files *do not* belong to the CPython package, they belong to the > individual Python modules that depend on CPython, so messing with them > when installing a new version of CPython would be a significant breach > of distro policies. Thanks for clarifying,

[issue19675] Pool dies with excessive workers, but does not cleanup

2017-02-13 Thread Davin Potts
Davin Potts added the comment: For triggering the exception, supplying a Process target that deliberately fails sounds right. As for tests for the various start methods (fork/forkserver/spawn), if you are looking at the 3.x branches you'll find this was been consolidated so that one test

[issue19675] Pool dies with excessive workers, but does not cleanup

2017-02-13 Thread Dustin Oprea
Dustin Oprea added the comment: Okay. Thanks for weighing-in. I'm trying to figure out how to write the tests. The existing set of tests for multiprocessing is a near nightmare. It seems like I might have to use one of the existing "source code" definitions to test for the no-cleanup

[issue29547] Add c code coverage to codecov

2017-02-13 Thread Alexander Belopolsky
New submission from Alexander Belopolsky: I had it done in my fork of cpython-mirror: https://github.com/abalkin/cpython/tree/ci -- assignee: belopolsky components: Tests messages: 287710 nosy: belopolsky priority: normal severity: normal status: open title: Add c code coverage to

[issue19675] Pool dies with excessive workers, but does not cleanup

2017-02-13 Thread Davin Potts
Davin Potts added the comment: @Winterflower: Thank you for encouraging @dsoprea to create the new PR and working to convert the previous patch. @dsoprea: Thank you for taking the time to create the PR especially after this has been sitting unloved for so long. Though the new workflow using

[issue19675] Pool dies with excessive workers, but does not cleanup

2017-02-13 Thread Davin Potts
Changes by Davin Potts : -- versions: +Python 2.7, Python 3.7 ___ Python tracker ___

[issue29546] A more helpful ImportError message

2017-02-13 Thread Barry A. Warsaw
New submission from Barry A. Warsaw: I haven't really thought about this deeply but I've observed that there are lots of cases where a user will report getting an ImportError trying to import a name from a module, where it turns out that the problem is that the module is coming from an

[issue29545] Python behavioral difference between Linux and AIX

2017-02-13 Thread Eric N. Vander Weele
Changes by Eric N. Vander Weele : -- nosy: +ericvw ___ Python tracker ___ ___

[issue29540] Add compact=True flag to json.dump/dumps

2017-02-13 Thread Andrew Nester
Andrew Nester added the comment: I've just added PR implementing alternative version provided by R. David Murray as more simple and straight-forward one. -- nosy: +andrewnester pull_requests: +53 ___ Python tracker

[issue29545] Python behavioral difference between Linux and AIX

2017-02-13 Thread Gireesh
New submission from Gireesh: Here is my python code (parent): #!/usr/bin/env python import errno import os import pty from subprocess import Popen, STDOUT master_fd, slave_fd = pty.openpty() proc = Popen(['./a.out'],stdout=slave_fd, close_fds=True) os.close(slave_fd) data = os.read(master_fd,

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: You're right. argparse has indirect dependency on dynamic modules so it can't be used in setup.py. Cross builds use prebuilt Python binaries so there's no problem. Sorry for those noises. I still think it's a dirty hack as it limits scalability and brings lots

[issue21056] csv documentation is incorrect

2017-02-13 Thread Sanket Dasgupta
Sanket Dasgupta added the comment: Hi, I am looking to fix this bug. So as per the discussion, should I remove the documentation of __next__() ? -- nosy: +sanketdg ___ Python tracker

[issue29538] bugs.python.org does not redirect to HTTPS

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: >From CPython's developer guide [1]: "Issues about the tracker should be reported to the meta tracker." > which doesn't support HTTPS at all I don't know where I should go for issues about the meta tracker. Maybe a meta-meta tracker? :D [1]

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Stefan Krah
Stefan Krah added the comment: On Mon, Feb 13, 2017 at 03:04:09PM +, Chi Hsuan Yen wrote: > > Chi Hsuan Yen added the comment: > > I have used my old patch several days on Android, and it seems quite fine. > Anyway that's not important anymore. I find that very surprising: ./python -E

[issue29544] Allow login to bugs.python.org with Google account

2017-02-13 Thread Paul Schreiber
New submission from Paul Schreiber: I created a standard account on bugs.python.org with username paulschreiber and email address paulschreiber at gmail.com. Later, I attempted to log in to bugs.python.org using Google and was shown an error message: There is already an account for

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: I have used my old patch several days on Android, and it seems quite fine. Anyway that's not important anymore. -- ___ Python tracker

[issue29543] Allow login to bugs.python.org with email address

2017-02-13 Thread Paul Schreiber
New submission from Paul Schreiber: Allow users to log in to bugs.python.org with the email address in the username field. -- messages: 287699 nosy: paulschreiber priority: normal severity: normal status: open title: Allow login to bugs.python.org with email address type: enhancement

[issue29538] bugs.python.org does not redirect to HTTPS

2017-02-13 Thread Paul Schreiber
Paul Schreiber added the comment: The issue you linked to: http://psf.upfronthosting.co.za/roundup/meta/issue463 covers psf.upfronthosting.co.za (which doesn't support HTTPS at all) and not bugs.python.org (which supports, but does not enforce HTTPS). --

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Stefan Krah
Stefan Krah added the comment: It's not a matter of *necessary*, you simply cannot use argparse in setup.py. Try to build with your patch and you'll see. -- ___ Python tracker

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Feb 12, 2017, at 05:42 PM, Brett Cannon wrote: >That comment is poorly worded. Pretty sure at one time it was accurately worded, but things have changed since PEP 3147 so the comment could use an update. -- ___

[issue29521] Minor warning messages when compiling documentation

2017-02-13 Thread STINNER Victor
STINNER Victor added the comment: The commit 3d707be950b387552585451071928e7b39cdfa53 broke the Docs buildbot slave. I proposed https://github.com/python/cpython/pull/68 to run the rstlint.py check on Travis as well, and to fix the 2 warnings.

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Petr Viktorin
Petr Viktorin added the comment: In Fedora also want to stay close to upstream: every downstream patch is like an open issue, something we'd like to merge given enough time and people. But, for a problem that: - is fixed in the latest version (3.6) - is getting a test to not happen again -

[issue29387] Tabs vs spaces FAQ out of date

2017-02-13 Thread Brian Curtin
Brian Curtin added the comment: New changeset 3d707be950b387552585451071928e7b39cdfa53 by Brian Curtin in branch 'master': bpo-29521 Fix two minor documentation build warnings (#41) https://github.com/python/cpython/commit/3d707be950b387552585451071928e7b39cdfa53 -- nosy:

[issue29523] latest setuptools breaks virtualenvs due to unbundling dependencies

2017-02-13 Thread Charalampos Stratakis
Charalampos Stratakis added the comment: Pull Request has been sent: https://github.com/python/cpython/pull/67 -- ___ Python tracker ___

[issue29442] Use argparse and drop dirty optparse hacks in setup.py

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: I've found a simpler patch set for supporting Android builds, so I don't need this patch anymore. If you don't think it's necessary, just close it. > usage of os.system() in some places I'm indeed sick with them :D --

[issue29541] Python3 error while building on Alt-F

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: That's super strange. crypt() is used in _crypt module only, and this modules is not used elsewhere in Python. A few more tests may help diagnostics 1. What's the result of ```./python -E```? 2. Does `import crypt` run fine in ./python? 3. Are there

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Andrew Nester
Andrew Nester added the comment: thanks for your notes, it's absolutely fine and I agree with you :) -- ___ Python tracker ___

[issue29410] Moving to SipHash-1-3

2017-02-13 Thread Christian Heimes
Christian Heimes added the comment: The old repos has a different name, https://github.com/tiran/cpython-mirror I'm busy with work at the moment. I'll get to the patch later. -- ___ Python tracker

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: [Andrew] > it's better to fix it as other issue No, it's better not to "fix" it at all. :-) It's one of those many behaviour changes where the answer to "Should we have done this differently in the first place" might possibly be "Yes" (and might also be

[issue29410] Moving to SipHash-1-3

2017-02-13 Thread INADA Naoki
INADA Naoki added the comment: Christian Heimes: Could you create pull request? https://github.com/tiran/cpython/tree/siphash13 is 404 now. -- ___ Python tracker

[issue29540] Add compact=True flag to json.dump/dumps

2017-02-13 Thread R. David Murray
R. David Murray added the comment: An alternative would be to define a COMPACT constant in the json module equal to (',', ':'). -- nosy: +r.david.murray ___ Python tracker

[issue29537] Alternative fix for BUILD_MAP_UNPACK_WITH_CALL opcode in 3.5

2017-02-13 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___

[issue27286] str object got multiple values for keyword argument

2017-02-13 Thread Iryna
Changes by Iryna : -- nosy: +ishcherb ___ Python tracker ___ ___ Python-bugs-list

[issue29537] Alternative fix for BUILD_MAP_UNPACK_WITH_CALL opcode in 3.5

2017-02-13 Thread Iryna
Changes by Iryna : -- nosy: +ishcherb ___ Python tracker ___ ___ Python-bugs-list

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Iryna
Changes by Iryna : -- nosy: +ishcherb ___ Python tracker ___ ___ Python-bugs-list

[issue29525] Python 2.7.13 for Windows broken (from prompt)

2017-02-13 Thread Frak N
Frak N added the comment: Excellent analysis guys! Thank you! The -X faulthandler option didn't work. The -S -v, however, did. Finally, renaming and deleting the readline entries fixed it such that I can now launch the REPL. Question. What does " disables the site module" for the -S option

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Andrew Nester
Andrew Nester added the comment: Agree about surprising behaviour but I guess it's better to fix it as other issue because it could break BC in some cases. At least it needs to be investigated. For now I would like to stick with same behaviour for _decimal and _pydecimal --

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Andrew Nester
Andrew Nester added the comment: actually, it's more related to subclassing, because the problem comes from the fact that before the fix __init__ method receives value as int not Decimal if int passed to from_float call. That's why only subclasses of Decimal can see difference in arguments

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: BTW, as a user, I'd expect `Decimal.from_float` to simply coerce its input to float if given an input that isn't actually a float in the first place; the fact that it has special handling in place for int inputs (and that that special handling takes the form

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: Is there an observable difference in user behaviour if no subclassing of Decimal is involved? Or does this just affect Decimal subclasses? -- ___ Python tracker

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: > it's a one-time hack intended to be removed and forgotten at the end of 3.5's > lifetime. Fair enough. If necessary, one of our options is to apply that patch or something like it to the Python executables that we distribute for Canopy. But in general,

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Petr Viktorin
Petr Viktorin added the comment: > perhaps Petr's patch to accept both magic numbers should be submitted > upstream so it's the default in 3.5.4+? I don't think it can be submitted in the current state; it's a one-time hack intended to be removed and forgotten at the end of 3.5's lifetime. I

[issue29534] _decimal difference with _pydecimal

2017-02-13 Thread Andrew Nester
Andrew Nester added the comment: I've just added PR for this issue. -- nosy: +andrewnester pull_requests: +51 ___ Python tracker ___

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: [Nick] > perhaps Petr's patch to accept both magic numbers should be submitted > upstream so it's the default in 3.5.4+? [...] Enthought's primary buildsystem maintainer is unfortunately out of contact for the week, so I can't speak with any authority on

[issue29542] python -m spacy.en.download undefined symbol: _ZSt24__throw_out_of_range_fmtPKcz

2017-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, but spacy is not part of the Python standard library. Please report your problem to spacy developers. -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -> closed

[issue29542] python -m spacy.en.download undefined symbol: _ZSt24__throw_out_of_range_fmtPKcz

2017-02-13 Thread Vladimir Shebunyaev
New submission from Vladimir Shebunyaev: I have (python 2.7.13 Anaconda 4.3.0 64bit Ubuntu 16 ) tried python -m spacy.en.download and got /home/vshebuniayeu/anaconda2/bin/python: /home/vshebuniayeu/anaconda2/lib/python2.7/site-packages/spacy/serialize/huffman.so: undefined symbol:

[issue29532] functools.partial is not compatible between 2.7 and 3.5

2017-02-13 Thread INADA Naoki
INADA Naoki added the comment: patch LGTM. -- nosy: +inada.naoki ___ Python tracker ___ ___ Python-bugs-list

[issue29538] bugs.python.org does not redirect to HTTPS

2017-02-13 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Nick Coghlan
Nick Coghlan added the comment: Given some of the other folks encountering problems, perhaps Petr's patch to accept both magic numbers should be submitted upstream so it's the default in 3.5.4+? And then we ask Larry and the other release management folks nicely for an early 3.5.4 release?

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Nick Coghlan
Nick Coghlan added the comment: On 12 Feb 2017 11:54 pm, "Serhiy Storchaka" wrote: Serhiy Storchaka added the comment: I don't understand how the table can make maintaining easier. You need to support multiple values in every branch even if the only one value is used.

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Mark Dickinson
Mark Dickinson added the comment: [Nick] > "Requires a mass rebuild of all the Python packages in the distro to get > things working properly again" is again a major concern for what's nominally > a low impact maintenance update. With my Enthought developer hat on, I'd like to second this

[issue29541] Python3 error while building on Alt-F

2017-02-13 Thread Honza Skýpala
Honza Skýpala added the comment: Hi Chi Hsuan Yen, thanks for trying to help, unfortunately no change, still getting the same error. -- ___ Python tracker

[issue29514] Add a test case that prevents magic number changes in minor releases

2017-02-13 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___

[issue29538] bugs.python.org does not redirect to HTTPS

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Duplicate of http://psf.upfronthosting.co.za/roundup/meta/issue463 -- nosy: +Chi Hsuan Yen ___ Python tracker ___

[issue29541] Python3 error while building on Alt-F

2017-02-13 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: My patch at https://hg.python.org/cpython/rev/ca2f024ce7cb may help. It points out missing symbols earlier. -- nosy: +Chi Hsuan Yen ___ Python tracker