[issue26617] Assertion failed in gc with __del__ and weakref

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset c9b7272e2553 by Benjamin Peterson in branch '3.5': ensure gc tracking is off when invoking weakref callbacks (closes #26617) https://hg.python.org/cpython/rev/c9b7272e2553 New changeset 520cb70ecb90 by Benjamin Peterson in branch '3.6': merge 3.5 (#

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Samson Lee
New submission from Samson Lee: The bug is os.fwalk() crashes with unhandled exception when there is an error accessing symbolic link targets. To reproduce the bug, create a symbolic link that targets a file that you do not have permission to access: $ touch handsoff $ sudo chown root:r

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Samson Lee
Samson Lee added the comment: Similar to http://bugs.python.org/issue25860 -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Pytho

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I can't reproduce the issue. $ mkdir testdir $ touch testdir/handsoff $ sudo chown root:root testdir/handsoff $ sudo chmod 700 testdir/handsoff $ ln -s handsoff testdir/blah $ python3.5 >>> import os >>> list(os.walk('testdir')) [('testdir', [], ['handsoff', '

[issue28229] lzma does not support pathlib

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> berker.peksag nosy: +serhiy.storchaka stage: patch review -> commit review ___ Python tracker ___ _

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- nosy: +jaysinh.shukla ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue28354] DeprecationWarning not reported for invalid escape sequences

2016-10-04 Thread Sergey B Kirpichev
New submission from Sergey B Kirpichev: We know from release notes, that "A backslash-character pair that is not a valid escape sequence now generates a DeprecationWarning". Sometimes it's true: $ python -W error Python 3.6.0b1+ (default, Oct 4 2016, 08:47:51) [GCC 4.9.2] on linux Type "help"

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Jaysinh shukla added the comment: According to this email, conversation with Terry, https://mail.python.org/mailman/private/core-mentorship/2016-October/003662.html adding patch for `Doc/library/ctypes.rst` -- hgrepos: +357 Added file: http://bugs.python.org/file44951/Doc_library_ctype

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- hgrepos: -357 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- hgrepos: +358 Added file: http://bugs.python.org/file44952/Doc_library_ctypes_rst_version_2_7.diff ___ Python tracker ___

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : -- hgrepos: -358 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44953/Doc_library_ctypes_rst_version_3_5.diff ___ Python tracker ___ ___ P

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44954/Doc_library_ctypes_rst_version_3_6.diff ___ Python tracker ___ ___ P

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44957/other_rst_version_3_5.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44958/other_rst_version_3_6.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44956/other_rst_version_2_7.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Changes by Jaysinh shukla : Added file: http://bugs.python.org/file44955/other_rst_default.diff ___ Python tracker ___ ___ Python-bugs-list ma

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Jaysinh shukla
Jaysinh shukla added the comment: @Treyy: I have uploaded patches according to your comment at Core mentorship here (https://mail.python.org/mailman/private/core-mentorship/2016-October/003662.html) `Since I applied the patch, I can say in in this particular case, re-open, preferably with one

[issue28354] DeprecationWarning not reported for invalid escape sequences

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See issue28128. A warning should be emitted when you compile the code, but it shouldn't be emitted when you import compiled module. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Improv

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Samson Lee
Samson Lee added the comment: Sorry, the target file needs to be in a directory you don't have permission to access: $ mkdir handsoff $ sudo chown root:root handsoff $ sudo chmod 700 handsoff $ ln -s handsoff/anything blah -- ___ Pyt

[issue28318] Python unittest.mock.mock_calls stores references to arguments instead of their values

2016-10-04 Thread Michael Foord
Michael Foord added the comment: This is a deliberate design decision of mock. Storing references works better for the more general case, with the trade-off being that it doesn't work so well for mutable arguments. See the note in the docs with a workaround: https://docs.python.org/3/library/

[issue28328] statistics.geometric_mean has no tests. Defer to 3.7?

2016-10-04 Thread Steven D'Aprano
Steven D'Aprano added the comment: > Steve, I really think we should postpone to 3.7. [...] If these fixes have to be in by the next beta (10th Oct), I fear that you are right. I can build up to changeset 103135:8b74e5528f35, but not beyond. I will be able to rectify that, but realistically it

[issue15393] JSONDecoder.raw_decode breaks on leading whitespace

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue11664] Add patch method to unittest.TestCase

2016-10-04 Thread Mariatta Wijaya
Changes by Mariatta Wijaya : -- nosy: +Mariatta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue21085] Cygwin does not provide siginfo_t.si_band

2016-10-04 Thread Erik Bray
Erik Bray added the comment: Thanks for the merge--targeting 3.7 for now and thinking about backporting later sounds fine to me. I'm also in the process of getting a Cygwin buildbot for Python up and running, but it's been slow going. That said, having a Cygwin buildbot is also high priority

[issue28023] python-gdb.py must be updated for the new Python 3.6 compact dict

2016-10-04 Thread INADA Naoki
INADA Naoki added the comment: I've fixed dict support of python-gdb.py. But I found py-bt and py-bt-full are broken. They doesn't show builtin method. I think it's because FASTCALL. But I'm not sure. I just skip the test for py-bt in attached patch. -- assignee: -> inada.naoki compo

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Erik Bray
Erik Bray added the comment: FWIW, even with this patch and --without-threads Python does *not* build successfully on Cygwin64 (which is all I'm really interested in personally), though it does succeed on 32-bit Cygwin. This has two related reasons: 1) The build of Python's bundled libffi doe

[issue28329] Add support for customizing scheduler's timefunc and delayfunc using subclassing

2016-10-04 Thread Jaysinh shukla
Jaysinh shukla added the comment: Adding documentation patch on given `overridable_time_delay_v2.patch` for `default`. -- nosy: +jaysinh.shukla Added file: http://bugs.python.org/file44960/doc_patch_version_default.diff ___ Python tracker

[issue14438] _cursesmodule build fails on cygwin

2016-10-04 Thread Erik Bray
Erik Bray added the comment: I think it would still be worth including this patch in Python. It wouldn't be the only condition in py_curses.h for platform-specific oddities with ncurses. This patch is still needed for the _curses module to build on Cygwin. -- nosy: +erik.bray ___

[issue28355] wsgiref simple_server PATH_INFO treats slashes and %2F the same

2016-10-04 Thread Tobias Dammers
New submission from Tobias Dammers: The WSGI reference implementation does not provide any means for application code to distinguish between the following request lines: GET /foo/bar HTTP/1.1 GET /foo%2Fbar HTTP/1.1 Now, the relevant RFC-1945 (https://tools.ietf.org/html/rfc1945#section-3.2)

[issue24065] Outdated *_RESTRICTED flags in structmember.h

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue2897] Deprecate structmember.h

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue28351] statistics.geometric_mean can enter infinite loop for Decimal inputs

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +steven.daprano ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue14438] _cursesmodule build fails on cygwin

2016-10-04 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: I don't agree with #14438 patch to apply branch. this is quickfix for just Cygwin. I think that curses library should be chosen using configure script. Erik, How about patch for #14598 or #28190? I prefer #28190 because better header is chosen using configur

[issue14438] _cursesmodule build fails on cygwin

2016-10-04 Thread Erik Bray
Erik Bray added the comment: I see what you're saying--thanks for pointing out those other tickets. I'll give #28190 a try first. -- ___ Python tracker ___

[issue28356] os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread stephan
New submission from stephan: Hi, I am just migrating my code from python 2.7.12 to 3.5.2 on Windows and stumbled on the following difference: In python 2.7.12: os.rename(filepath1, filepath2) works even if filepath1 and filepath2 are on different drives (or one on a local drive, the o

[issue21085] Cygwin does not provide siginfo_t.si_band

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: When you're ready to get your bot set up, ping me and I'll get you set up on the master side. Thanks! -- ___ Python tracker ___

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: Ah, on Linux rename() also fails if src and dst are on two different filesystems: OSError: [Errno 18] Invalid cross-device link. By the way, the Python document doesn't say anything about operation on two different filesystems :-/ https://docs.python.org/dev/l

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: Hmm, Cygwin64 is what I built on (successfully). _ctypes does not build, but that's due to not having any libffi available at all: the bundled copy is no longer included in 3.7, and I didn't install a system copy. I view ctypes support as a fairly low-priority

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: On Python 3 on Windows, os.rename() is implemented as MoveFileExW() with flags=0. The doc says: "When moving a file, the destination can be on a different file system or volume. If the destination is on another drive, you must set the MOVEFILE_COPY_ALLOWED fl

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread Eryk Sun
Eryk Sun added the comment: 3.3 added os.replace, which on Windows entailed a switch from calling MoveFile to MoveFileEx in order to specify the MOVEFILE_REPLACE_EXISTING flag. However, not passing the MOVEFILE_COPY_ALLOWED broke compatibility with os.rename on Windows for versions prior to 3.

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread stephan
stephan added the comment: Hi, I tryed os.replace() as replacement for os.rename() too, but as you said it does not work if the files are on different drives. For now I switched to shutil.move() but I suppose its not as performant/optimal as an "move" or "rename" directly supported by the OS.

[issue28350] Interning string constants with null character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Victor. -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list maili

[issue28350] Interning string constants with null character

2016-10-04 Thread STINNER Victor
STINNER Victor added the comment: I have no opinion on interning non-ASCII strings. -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue28353] os.fwalk() unhandled exception when error occurs accessing symbolic link target

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, there is a difference between os.walk() and os.fwalk() in some cases. I don't know whether it was introduced deliberately or by accident. os.fwalk() was added in issue13734, FileNotFoundError is used since issue14773. -- nosy: +hynek, loewis, ne

[issue14438] _cursesmodule build fails on cygwin

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: My patch at issue28190 solves a different problem. IMO the correct way to go for this issue is issue25720. By the way, this problem affects more than Cygwin. (issue14598) -- nosy: +Chi Hsuan Yen ___ Python tracker <

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Erik Bray
Erik Bray added the comment: Okay, that would explain it then. I was building from an older branch (pre-3.7) that still has the bundled libffi. FWIW with the fix from #2445, --with-system-ffi works (as does some trivial use of _ctypes though I haven't run all the tests). So if the bundled li

[issue28315] incorrect "in ?" output in 'divide' example at "Defining Clean-up Actions" in tutorial

2016-10-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue28350] Interning string constants with null character

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 522adc2e082a by Serhiy Storchaka in branch '2.7': Issue #28350: String constants with null character no longer interned. https://hg.python.org/cpython/rev/522adc2e082a New changeset d7ab3241aef2 by Serhiy Storchaka in branch '3.5': Issue #28350: Str

[issue28350] Interning string constants with null character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Added tests and refactored all_name_chars(). -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker __

[issue28356] Windows: os.rename different in python 2.7.12 and python 3.5.2

2016-10-04 Thread Eryk Sun
Eryk Sun added the comment: In scanning over issue 8828, I see no discussion of the consequences of not using MOVEFILE_COPY_ALLOWED in Antoine's patch, so it appears that this behavior change was unintentional. > For now I switched to shutil.move() but I suppose its not > as performant/optimal

[issue25720] Fix curses module compilation with ncurses6

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: is_pad is added in ncurses 5.7-20090906 [1]. At least Mac OS X still ships ancient ncurses 5.7-20081102 [2], so an check in configure.ac is necessary. I'm trying it out. [1] http://invisible-island.net/ncurses/NEWS.html#t20090906 [2] http://opensource.apple.com

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: Now, Cygwin platform is able to build core interpreter on default branch. But the curses module has been failed to build. Therefore I tried to build curses module on Cygwin (Vista x86) using this patch. And it has been succeeded. The patch effect at build ti

[issue21131] test_faulthandler.test_register_chain fails on 64bit ppc/arm with kernel >= 3.10

2016-10-04 Thread Orion Poplawski
Orion Poplawski added the comment: We're running into this building python 3.4.3 on EL6 ppc64. The os kernel is 4.7.2-201.fc24.ppc64, but the EL6 chroot kernel-headers are 2.6.32-642.4.2.el6. Any progress here? -- nosy: +opoplawski ___ Python trac

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: Hmm it's surprising for me that an irrelevant patch fixes issues on Cygwin. Does test_curses pass? -- ___ Python tracker ___ ___

[issue25720] Fix curses module compilation with ncurses6

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Mark, do you have relation to this? -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bug

[issue28357] *1-800-790-9186* Dell printer helpdesk phone number usa. Dell printer issue support remotely by third party

2016-10-04 Thread grovarsunil
New submission from grovarsunil: Are you looking online technical support for printer problems. Is your printer unable to print or scan. call us 1-800-790-9186 and get instant technical support remotely for Dell printer issues. DISCLAIMER: - WE are an independent organization working as online

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- components: -Build nosy: -grovarsunil resolution: -> not a bug stage: -> resolved status: open -> closed versions: -Python 3.5 ___ Python tracker __

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg278055 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue28357] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- title: *1-800-790-9186* Dell printer helpdesk phone number usa. Dell printer issue support remotely by third party -> Spam ___ Python tracker ___ __

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Steven D'Aprano
Steven D'Aprano added the comment: I'm sorry to say that due to technical difficulties, geometric mean is not going to be in a fit state for beta 2 of 3.6, and so is going to be removed and delayed until 3.7. -- priority: release blocker -> versions: +Python 3.7 -Python 3.6 _

[issue13756] Python3.2.2 make fail on cygwin

2016-10-04 Thread Zachary Ware
Zachary Ware added the comment: No problem. Feel free to nosy me on any Cygwin issues that you feel have consensus on the solution and a commit-ready patch implementing it. I can't guarantee when I'll have time to look at them, but I have finally gotten around to installing Cygwin and will g

[issue5830] heapq item comparison problematic with sched's events

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Needed tests for this feature. Otherwise sched.Event can be "enhanced" by removing ordering methods (issue28330). -- nosy: +serhiy.storchaka ___ Python tracker __

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9dce0e41bedd by Steven D'Aprano in branch 'default': Issue #27181 remove geometric_mean and defer for 3.7. https://hg.python.org/cpython/rev/9dce0e41bedd -- ___ Python tracker

[issue28351] statistics.geometric_mean can enter infinite loop for Decimal inputs

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28328] statistics.geometric_mean has no tests. Defer to 3.7?

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28327] statistics.geometric_mean gives incorrect results for mixed int/float inputs

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue28111] geometric_mean can raise OverflowError for large input length

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue27761] Private _nth_root function loses accuracy

2016-10-04 Thread Steven D'Aprano
Changes by Steven D'Aprano : -- versions: +Python 3.7 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue28190] Detect curses headers correctly for cross-compiling

2016-10-04 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: test_curses has been skipped almost. the skip reason has been written "cygwin's curses mostly just hangs" in test case class. I removed the skip condition, and ran test. Tests was almost passed. The only, unget_wch was failed by edge case '\U0010', beca

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mai

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 381ef0f08f89 by Serhiy Storchaka in branch '3.5': Issue #28321: Fixed writing non-BMP characters with binary format in plistlib. https://hg.python.org/cpython/rev/381ef0f08f89 New changeset 3a7234d04fe9 by Serhiy Storchaka in branch '3.6': Issue #28

[issue28358] cakekup...@gmail.com

2016-10-04 Thread goon
New submission from goon: calli norton support 1-888-879-0163 phone number norton antivirus support customer dot support phone number usa calli norton support 1-888-879-0163 phone number norton antivirus support customer dot support phone number usa calli norton support 1-888-879-0163

[issue28321] Plistlib: Half of the double width characters are missing when writing binary plist

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> commit review status: open -> closed ___ Python tracker ___

[issue28359] Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number

2016-10-04 Thread goon
New submission from goon: - USAA-1-888-879-0163++ Norton 360 support phone number Norton tech support phone number Norton 360 Tech Support Number Norton antivirus~:((++179.01.63+))@Norton antivirus Phone@number@Norton antivirus@Dell@brother@Norton antivirus@Norton antivirus@@technical@su

[issue28259] Ctypes bug windows

2016-10-04 Thread Aristotel
Aristotel added the comment: Unfortunately in my case "minimal" example is extremely long. Do you really need it& -- versions: +Python 3.5 ___ Python tracker ___ ___

[issue28359] Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -asyncio nosy: -goon369, gvanrossum, yselivanov type: crash -> versions: -Python 3.7 ___ Python tracker ___

[issue28358] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Argument Clinic nosy: -goon369, larry resolution: -> not a bug status: open -> closed title: cakekup...@gmail.com -> Spam type: behavior -> versions: -Python 3.7 ___ Python tracker

[issue28359] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg278064 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue28359] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> not a bug status: open -> closed title: Norton.Helpline +1-888-879-.0163 Norton Technical Support telePhone number Norton phone Number -> Spam ___ Python tracker _

[issue28360] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- components: -Argument Clinic nosy: -goon369, larry resolution: -> not a bug status: open -> closed title: **<<<1^888`879~O163 Norton antivirus customer support phone number -> Spam versions: -Python 3.7 _

[issue28360] **<<<<<<<1^888`879~O163>>>>>>>> Norton antivirus customer support phone number

2016-10-04 Thread goon
New submission from goon: USA..1 888-879-0163++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number USA..1 888-879-0163++ Norton 360 support phone number om Norton tech support phone number Norton 360 Tech Support Number USAtralia USA-1 888-879

[issue28360] Spam

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- Removed message: http://bugs.python.org/msg278065 ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue28358] Spam

2016-10-04 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg278063 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue26439] ctypes.util.find_library fails when ldconfig/glibc not available (e.g., AIX)

2016-10-04 Thread Michael Felt
Michael Felt added the comment: On 01-Oct-16 08:44, Martin Panter wrote: > Martin Panter added the comment: > > Hi Michael, I have done some cleanup and modifications to your patch. The > result is in aix-library.161001.patch, which has all the changes, i.e. it is > not based on another patch.

[issue28229] lzma does not support pathlib

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue28229] lzma does not support pathlib

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset b512780c6589 by Berker Peksag in branch '3.6': Issue #28229: lzma module now supports pathlib https://hg.python.org/cpython/rev/b512780c6589 New changeset de398937653b by Berker Peksag in branch 'default': Issue #28229: Merge from 3.6 https://hg.pyt

[issue28348] Doc typo in asyncio.Task

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8c8692da071a by Berker Peksag in branch '3.5': Issue #28348: Fix typo in asyncio.Task() documentation https://hg.python.org/cpython/rev/8c8692da071a New changeset 99c37fa72b66 by Berker Peksag in branch '3.6': Issue #28348: Merge from 3.5 https://hg

[issue28348] Doc typo in asyncio.Task

2016-10-04 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue28255] TextCalendar.prweek/month/year outputs an extra whitespace character

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It looks to me that only prmonth() should be changed. prweek() and pryear() either match the behavior of PYthon 2 or are the good approximation of it. -- ___ Python tracker

[issue28222] test_distutils fails

2016-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue28222] test_distutils fails

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa09ba71babb by Berker Peksag in branch '3.5': Issue #28222: Don't fail if pygments is not available https://hg.python.org/cpython/rev/fa09ba71babb New changeset d5eefcfa3458 by Berker Peksag in branch '3.6': Issue #28222: Merge from 3.5 https://hg.

[issue27998] Remove support of bytes paths in os.scandir()

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm confused by the current title of this issue. Should the support of bytes paths in os.scandir() be removed or preserved? In latter case we can remove workaround code from os and glob. -- ___ Python tracker

[issue3119] pickle.py is limited by python's call stack

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It would be nice to support unlimitedly nested structures. C stack is more hard limit than Python stack. But the code of the pickle module (especially C implementation) is complicated and hardly optimized. I think it would be not easy to implement stackless

[issue3119] pickle.py is limited by python's call stack

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- priority: normal -> low stage: patch review -> needs patch ___ Python tracker ___ ___ Python-bugs-list

[issue26491] Defer DECREFs until enum object is in a consistent state for re-entrancy

2016-10-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue25783] test_traceback.test_walk_stack() fails when run directly (without regrtest)

2016-10-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ping. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue28361] BETA report: Python3.6 names pip pip3.6 (and why is the other name pip3)

2016-10-04 Thread Michael Felt
New submission from Michael Felt: a) pip is embedded in Python for some time. b) pip is called pip3.5 (with link to pip3) c) in Python3.6 pip is now called pip3.6 and linked to pip3 pip is pip - not pip3* because python is now called python3* pip is pip - currently version 8.1.2 - what does tha

[issue27181] Add geometric mean to `statistics` module

2016-10-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset de0fa478c22e by Steven D'Aprano in branch '3.6': Issue #27181 remove geometric_mean and defer for 3.7. https://hg.python.org/cpython/rev/de0fa478c22e -- ___ Python tracker

[issue27998] Remove support of bytes paths in os.scandir()

2016-10-04 Thread Guido van Rossum
Guido van Rossum added the comment: It went back and forth. The current feeling is to *keep* that support, especially since their deprecation on Windows has been *undone* in 3.6. Feel free to update the title (though the initial comments may be harder to understand without the context of the orig

  1   2   >