[issue23375] test_py3kwarn fails on Windows

2015-09-02 Thread Zachary Ware
Zachary Ware added the comment: Could this have anything to do with the fact that imageop is a 'built-in' (as opposed to 'extension') module on Windows? Either way, I'm about ready to just skip testing the warning f

[issue24994] Python 3.4.2 64-bit Installer error (Please insert the disk:)

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: Glad you solved it for yourself :) -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue24305] The new import system makes it inconvenient to correctly issue a deprecation warning for a module

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: Just to note, there's an easier way to run a custom build on multiple bots: go to http://buildbot.python.org/all/builders/ and scroll (way) down to the section for forcing a build on custom builders (you can search for 'Repo path:' (with the col

[issue24974] ICC on Windows 8.1: _decimal fails to compile with default fp model

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: I tested both 32 and 64 bit, with MSVC 14 (VS 2015) and ICC 15.0 (backed by VS 2015). I can go ahead and commit this to a sandbox for buildbot testing if it would help. -- ___ Python tracker <http://bugs.python.

[issue24974] ICC on Windows 8.1: _decimal fails to compile with default fp model

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: There's not a 32-bit ICC buildbot, though I could force one. But since you say commit it, I'll commit it ;) -- ___ Python tracker <http://bugs.python.o

[issue24974] ICC on Windows 8.1: _decimal fails to compile with default fp model

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: Committed! Thank you Steve for the suggestion and Stefan for the approval. -- ___ Python tracker <http://bugs.python.org/issue24

[issue24986] It should be possible to build successfully without external libraries

2015-09-03 Thread Zachary Ware
Zachary Ware added the comment: The committed versions are slightly different, I had bad logic in adding _socket to ExtensionModules (if IncludeExternals was false while IncludeSSL was true, _socket wasn't added). build.bat also uses the property names instead of its own internal names

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-04 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> needs patch versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue24999> ___ ___ Python-bugs-list mai

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-04 Thread Zachary Ware
Zachary Ware added the comment: Replacing the two instances of "LONG_MAX >> 2*PyLong_SHIFT" with "SIZEOF_LONG*CHAR_BIT-1 >= 2*PyLong_SHIFT" fixes the warnings, but does nothing for test_re. -- ___ Python tracker <h

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-04 Thread Zachary Ware
Zachary Ware added the comment: Another lovely facet of this segfault: it doesn't occur when built in Debug configuration. -- ___ Python tracker <http://bugs.python.org/is

[issue25018] test_shutil.test_make_archive() fails on Windows 8.1

2015-09-07 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue25018> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25010] minor typo in PCBuild readme.txt

2015-09-07 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report and patch! Unfortunately, that example is so completely out of date we'd probably be better off to remove it, but we can at least point to the right path :) -- nosy: +zach.ware versions: +Python 3.4, Pytho

[issue25022] Remove PC/example_nt/

2015-09-07 Thread Zachary Ware
New submission from Zachary Ware: The instructions and examples in PC/example_nt/ are hopelessly outdated (the readme says "It has been tested with VC++ 7.1 on Python 2.4" on default!). Is there any reason to keep and update the example, or can we just drop it? -- assi

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-07 Thread Zachary Ware
Zachary Ware added the comment: Stefan Krah commented: > The buildbot segfaults all over the place, also in test_tokenize > and test_json: To be fair, other buildbots are also segfaulting (or otherwise silently failing) on those: 3.4 on XP, test_json: http://buildbot.python.org/all/bu

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-07 Thread Zachary Ware
Zachary Ware added the comment: Note: the ICC buildbot does fail much more consistently on those. -- ___ Python tracker <http://bugs.python.org/issue24

[issue25062] Doc linter error: [2] library/typing.rst:358: default role used

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: Guido van Rossum added the comment: > That link gives me a timeout right now. How can I run the doc linter > manually? "make html" in the Doc tree didn't alert me to this issue. "make check" is the doc linter. I've consider

[issue25062] Doc linter error: [2] library/typing.rst:358: default role used

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: Oh right, Berker already beat me to it: changeset 97861:72e696bc480a 3.5 Fix typos and improve markup in typing.rst. author Berker Peksag dateThu, 10 Sep 2015 21:55:50 +0300 (35 minutes ago) parents a380841644b2 childrenc52194da1ae2

[issue25062] Doc linter error: [2] library/typing.rst:358: default role used

2015-09-10 Thread Zachary Ware
Changes by Zachary Ware : -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.5 ___ Python tracker <http://bugs.python.or

[issue25022] Remove PC/example_nt/

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: Erk...just discovered there's a section of Doc/extending/windows.rst that depends on example_nt that will need to be excised. -- resolution: fixed -> stage: resolved -> needs patch status: closed -> open

[issue16893] Generate Idle help from Doc/library/idle.rst

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: I'd be happy to work on making an 'idledoc' target for the Doc/ makefiles that works with Mark's viewer. I can't guarantee any kind of timeframe, but the idledoc target wouldn't be necessary right off the bat; it could be done aft

[issue25065] https://docs.python.org/library should redirect to Python 3 doc

2015-09-10 Thread Zachary Ware
Zachary Ware added the comment: This is by design, see PEP 430 for rationale. Eventually the Python 3 docs will be the default, but that day isn't quite here yet. -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved status: ope

[issue25067] Spam

2015-09-10 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: -petri.lehtinen resolution: -> not a bug stage: -> resolved status: open -> closed title: Hello -> Spam ___ Python tracker <http://bugs.python

[issue25067] Spam

2015-09-10 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file40433/attachment.zip ___ Python tracker <http://bugs.python.org/issue25067> ___ ___ Python-bugs-list m

[issue25073] Document asyncio.test_utils

2015-09-11 Thread Zachary Ware
New submission from Zachary Ware: asyncio.test_utils is not documented. I'm unsure as to whether that's because it's meant to be private, or if it just hasn't been done yet. -- assignee: docs@python components: Documentation, asyncio messages: 250482 nosy: doc

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Looks like an issue with a space in the path. That test has been flaky in the past, though, I assume it's failed multiple times? -- ___ Python tracker <http://bugs.python.org/is

[issue25097] test_logging may fail with 'Access is denied' when pywin32 is installed

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: With an installed Python with pywin32 installed, running the test as a non-privileged user: == ERROR: test_basic (test.test_logging.NTEventLogHandlerTest

[issue25098] test_uuid fails with pywin32 installed

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: With installed Python with pywin32 installed: == ERROR: test_netbios_getnode (test.test_uuid.TestInternals) -- Traceback

[issue25099] test_compileall fails when run by unprivileged user on installed Python

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: == FAIL: test_no_args_respects_force_flag (test.test_compileall.CommandLineTests) -- Traceback (most recent call last): File

[issue12420] distutils tests fail if PATH is not defined

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Agreed with Mark; I don't see anywhere that lack of PATH would affect the failures you're seeing, Terry. Do you have VS2015 installed? If not, the failure of distutils to skip the tests that need it should be raised as a sepa

[issue25092] Regression: test_datetime fails on 3.5, Win 7, works on 3.4

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: I can reproduce. I'm bewildered as to why none of the buildbots are complaining about this. -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/is

[issue25094] Test_tools not working on Windows.

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Interesting, I got a different failure on 3.5.0: == ERROR: test_sundry (test.test_tools.test_sundry.TestSundryScripts

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Yes, installation in 'Program Files' produces the failure. Looks like it's probably just bad quoting in the test, but I haven't looked at the code yet. This probably affects 2.7 and up, I don't think there have been any changes to tha

[issue25092] Regression: test_datetime fails on 3.5, Win 7, works on 3.4

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: Interestingly, the re-run performed by regrtest's '-w' flag did not fail. -- ___ Python tracker <http://bugs.pyt

[issue25101] test_zipfile failure when run by unprivileged user with installed Python

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: == ERROR: test_write_with_optimization (test.test_zipfile.PyZipFileTests) -- Traceback (most recent call last): File &q

[issue25102] Windows installer: 'precompile standard library' option should pre-compile with -O and -OO

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: Since the default all-users install location is now Program Files and thus not world-writable and with the advent of optimization-tagged .pyc files, the 'precompile' option in the installer should also precompile with -O and -OO. -

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: The patch works, with an added 'import subprocess' and after removing the 'f.close()' check. I hadn't realized this test was still using os.popen, that's fairly horrible :) -- ___

[issue25103] 3.5.0 installed standard library on Windows has LF line endings

2015-09-13 Thread Zachary Ware
New submission from Zachary Ware: It would be nice to install the standard library (and test suite) with CRLF line endings, to allow for reading/editing with Notepad. Horrible though it is, it's at least always available :) Steve, this may just be an issue of how your repository is ch

[issue25104] Wrong documentation for "chr(i)" function.

2015-09-13 Thread Zachary Ware
Zachary Ware added the comment: You appear to be reading the Python 3 documentation and using Python 2: $ python3 Python 3.4.3 (v3.4.3:9b73f1c3e601, Feb 23 2015, 02:52:03) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type "help", "copyright", "credi

[issue25107] Windows 32-bit: exe-files doesn't run

2015-09-14 Thread Zachary Ware
Zachary Ware added the comment: Windows XP is not supported by Python 3.5. See PEP 11 for details. -- components: +Windows -IDLE nosy: +paul.moore, steve.dower, tim.golden, zach.ware resolution: -> wont fix stage: -> resolved status: open -&g

[issue25102] Windows installer: 'precompile standard library' option should pre-compile with -O and -OO

2015-09-14 Thread Zachary Ware
Zachary Ware added the comment: It doesn't appear to; my 'C:\Program Files\Python 3.5\Lib\__pycache__' is full of .pyc's, but none with an optimization tag. To confirm with math rather than eyesight, according to 'dir' there are 168 files in Lib\, and 168 in L

[issue25102] Windows installer: 'precompile standard library' option should pre-compile with -O and -OO

2015-09-14 Thread Zachary Ware
Zachary Ware added the comment: Steve Dower added the comment: > You're proposing making a slow part of the install three times slower, > correct? Just to confirm :) Indeed I am :). Or extend the precompile options to let the user do whatever of the three they want. The precompil

[issue25124] No single .msi available for 3.5 release

2015-09-15 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> steve.dower components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issu

[issue25117] Windows installer: precompiling stdlib fails with missing DLL errors

2015-09-15 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue25

[issue25103] 3.5.0 installed standard library on Windows has LF line endings

2015-09-15 Thread Zachary Ware
Zachary Ware added the comment: Victor: that would be ideal, but hoping for that seems an exercise in futility :) Larry: It seems to be; the test case that brought it my attention (Lib\test\test_tcl.py) has CRLF in my 3.4.3 install and LF in 3.5.0

[issue25140] platform.platform() incorrectly identifies Windows 10 as 'Windows-8-6.2.9200'

2015-09-16 Thread Zachary Ware
Changes by Zachary Ware : -- superseder: -> Finding the Windows version getting messier (detect windows 8.1?) ___ Python tracker <http://bugs.python.org/issu

[issue25140] platform.platform() incorrectly identifies Windows 10 as 'Windows-8-6.2.9200'

2015-09-16 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue25140> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25143] 3.5 install fails poorly on Windows XP

2015-09-16 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> steve.dower components: +Installation stage: -> needs patch versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/i

[issue25145] urllib how-to should be updated to remove PyGoogle

2015-09-16 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> needs patch versions: +Python 2.7 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue25145> ___ _

[issue25151] venv does not work with debian releases, if you want to install pip

2015-09-17 Thread Zachary Ware
Changes by Zachary Ware : -- resolution: -> third party stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python.org/issue25151> ___ ___

[issue25153] PCbuild/*.vcxproj* should use CRLF line endings

2015-09-17 Thread Zachary Ware
New submission from Zachary Ware: PCbuild/*.vcxproj* should be added to .hgeol to force them to CRLF. A couple of reasons: 1) They're only used on Windows, where the default (terrible, but always available) editor doesn't understand LF 2) More importantly, the tcl, tk, and tix pr

[issue25155] datetime.datetime.now() raises

2015-09-17 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +haypo ___ Python tracker <http://bugs.python.org/issue25155> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25147] Enum: remove dependency on OrderedDict

2015-09-17 Thread Zachary Ware
Zachary Ware added the comment: That change could use a comment stating why it's doing things that way instead of the 'obvious' way. -- nosy: +zach.ware ___ Python tracker <http://bugs.pyt

[issue25167] Spam

2015-09-18 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg250965 ___ Python tracker <http://bugs.python.org/issue25167> ___ ___ Python-bugs-list m

[issue25167] Spam

2015-09-18 Thread Zachary Ware
Changes by Zachary Ware : -- components: -asyncio nosy: -gvanrossum, haypo, leo, yselivanov stage: -> resolved title: THE SCORCH TRIALS OF MAZE RUNNER DISFACTION LOGGIC -> Spam versions: -Python 3.4 ___ Python tracker <http://bugs.p

[issue25092] Regression: test_datetime fails on 3.5, Win 7, works on 3.4

2015-09-20 Thread Zachary Ware
Changes by Zachary Ware : -- keywords: +3.5regression ___ Python tracker <http://bugs.python.org/issue25092> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25202] Windows: with-statement doesn't release file handle after exception on "No space left on device" error

2015-09-21 Thread Zachary Ware
Changes by Zachary Ware : -- superseder: -> file descriptor not being closed with context manager on IOError when device is full ___ Python tracker <http://bugs.python.org/issu

[issue25215] Simple extension to iter(): iter() returns empty generator

2015-09-22 Thread Zachary Ware
Changes by Zachary Ware : -- versions: -Python 2.7, Python 3.2, Python 3.3, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issue25215> ___ ___

[issue25236] str.maketrans wrong description for optional 3rd parameter

2015-09-25 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue25236> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25250] AttributeError: 'MSVCCompiler' object has no attribute '_MSVCCompiler__version'

2015-09-27 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue25

[issue25251] Unknown MS Compiler version 1900

2015-09-27 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware type: crash -> behavior ___ Python tracker <http://bugs.python.org/issu

[issue25250] AttributeError: 'MSVCCompiler' object has no attribute '_MSVCCompiler__version'

2015-09-27 Thread Zachary Ware
Changes by Zachary Ware : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue25250> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25261] Incorrect Return Values for any() and all() Built-in Functions

2015-09-28 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Library (Lib) -Build status: open -> closed ___ Python tracker <http://bugs.python.org/issue25261> ___ ___ Python-

[issue25271] SystemError when doing codecs.escape_encode(b'')

2015-09-29 Thread Zachary Ware
Changes by Zachary Ware : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> codecs.escape_encode systemerror on empty byte string ___ Python tracker <http://bugs.python

[issue25270] codecs.escape_encode systemerror on empty byte string

2015-09-29 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +The Compiler, doerwalter, lemburg stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue25270> ___ ___ Py

[issue25001] Make --nowindows argument to regrtest propagate when running with -j

2015-09-29 Thread Zachary Ware
Zachary Ware added the comment: Just to add my 0.02USD: I think my preferred course of action would be to enable '-n' by default and deprecate/ignore the option. For the assert output on stderr, I think it would be fine to hide it by default, but show it if verbose > i for so

[issue25194] Opt-in motivations & affiliations page for core contributors

2015-09-30 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue25194> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25289] test_strptime hangs sometimes on AMD64 Windows7 SP1 3.x buildbot

2015-10-01 Thread Zachary Ware
Zachary Ware added the comment: Jeremy Kloth wrote: > Please note, it is the only 64-bit Windows buildbot That's not true anymore; in fact, all but David Bolen's XP and Windows 7 bots are 64-bit. Yours is the one one in the 'stable' set, but that classification is a

[issue25289] test_strptime hangs sometimes on AMD64 Windows7 SP1 3.x buildbot

2015-10-01 Thread Zachary Ware
Zachary Ware added the comment: I was curious, so I checked: C:\Users\Zachary\code\hg.python.org\3.5>python.bat -m test.pystone Running Debug|x64 interpreter... Pystone(1.2) time for 5 passes = 1.14142 This machine benchmarks at 43805 pystones/second C:\Users\Zachary\code\hg.python.org\

[issue25097] test_logging may fail with 'Access is denied' when pywin32 is installed

2015-10-01 Thread Zachary Ware
Zachary Ware added the comment: Thanks, Vinay! -- stage: needs patch -> resolved versions: +Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue25315] OrderedDict mangled private attribute is inaccessible

2015-10-04 Thread Zachary Ware
Zachary Ware added the comment: This is a side-effect of 3.5 having a C implementation of OrderedDict, and will not be fixed. In the standard library, even just having a single trailing underscore is a clear indication of "if you use this, expect it to break without warning at any

[issue25097] test_logging may fail with 'Access is denied' when pywin32 is installed

2015-10-06 Thread Zachary Ware
Zachary Ware added the comment: Turned out that your change didn't quite do it, but it was just the method you used to try to access the errno (which looks like it ought to work from the formatting of the error message). Mere moments after pushing the fix for that, I realized that the ne

[issue25329] test_json crashes with stack overflow on Windows

2015-10-06 Thread Zachary Ware
New submission from Zachary Ware: See for example: http://buildbot.python.org/all/builders/AMD64%20Windows8.1%20Non-Debug%203.4/builds/224 Possibly related to #25222. -- components: Tests, Windows messages: 252432 nosy: ezio.melotti, haypo, paul.moore, pitrou, rhettinger, steve.dower

[issue25329] test_json crashes with stack overflow on Windows

2015-10-06 Thread Zachary Ware
Zachary Ware added the comment: Note that this is not a consistent failure, see for example build 223[1] where test_json passes. I've noticed that the sooner test_json starts, the more likely it is to pass (it's the 28th test in 223, 117th in 224). [1] http://buildbot.pyth

[issue25332] [Errno 10035] A non-blocking socket operation could not be completed immediately on python 3.1.2

2015-10-07 Thread Zachary Ware
Zachary Ware added the comment: Python 3.1 is long since dead, and 3.1.2 isn't even the latest 3.1. Is there a particular reason why you're using it? I highly recommend upgrading to a newer Python, either 3.4.3 or 3.5.0. 3.5.0 if you're on anything newer than Windows XP, 3.4

[issue25386] msvcrt_putch/msvcrt_putwch don't check the return value of _putch/_putwch

2015-10-12 Thread Zachary Ware
Zachary Ware added the comment: Feel free to create a patch yourself, we'll be happy to review it. Note though that the python project on svn.python.org is old and abandoned; we moved to Mercurial several years ago (see https://hg.python.org/cpython/). I haven't checked to see w

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-10-12 Thread Zachary Ware
Changes by Zachary Ware : -- versions: +Python 3.4, Python 3.6 ___ Python tracker <http://bugs.python.org/issue25093> ___ ___ Python-bugs-list mailing list Unsub

[issue25396] A Python runtime not could be located.

2015-10-13 Thread Zachary Ware
Zachary Ware added the comment: Sorry, this is not the appropriate place to look for help with this issue; it's not a bug with Python itself. I'd suggest asking on a Mac help forum. There was a similar question on python-list a few months ago, you might find some pointers in t

[issue25093] New 3.5.0 failure in test_tcl on win7

2015-10-13 Thread Zachary Ware
Zachary Ware added the comment: Thank you for the patch, Serhiy. I'm just sorry it took me so long to get it committed. -- ___ Python tracker <http://bugs.python.org/is

[issue25429] Can segfault Python with itertools.chain.from_iterable

2015-10-16 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> rhettinger components: +Extension Modules nosy: +rhettinger versions: +Python 3.5, Python 3.6 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue25429] Can segfault Python with itertools.chain.from_iterable

2015-10-17 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue25429> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue25450] IDLE: Save path automatically choses C:\Windows\system32

2015-10-20 Thread Zachary Ware
Changes by Zachary Ware : -- components: +IDLE, Windows -Installation nosy: +kbk, paul.moore, roger.serwy, steve.dower, terry.reedy, tim.golden, zach.ware title: Save path automatically choses C:\Windows\system32 -> IDLE: Save path automatically choses C:\Windows\syste

[issue25456] 3.4 _tkinter build fails, Windows 10, no tcl.h

2015-10-22 Thread Zachary Ware
Zachary Ware added the comment: 3.4 still requires Tcl/Tk to be built outside of VS, and its too late in the 3.4 release cycle to think about changing it. PCbuild\build.bat has been updated to do the Tcl/Tk build, though; run "PCbuild\build.bat -e -d" (remove '-d' for a

[issue25456] 3.4 _tkinter build requires undocumented manual steps to be usable

2015-10-22 Thread Zachary Ware
Zachary Ware added the comment: Ok, fair enough; finding the DLLs is still an issue, but not the reported issue. I'll try to get a patch committed soon. -- assignee: -> zach.ware title: 3.4 _tkinter build fails, Windows 10, no tcl.h -> 3.4 _tkinter build requires undocume

[issue25456] 3.4 _tkinter build requires undocumented manual steps to be usable

2015-10-25 Thread Zachary Ware
Zachary Ware added the comment: Should be fixed now, please test? I think everything is now covered in readme.txt as well. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25492] subprocess with redirection fails after FreeConsole

2015-10-27 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Windows nosy: +eryksun, paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue25

[issue25494] Four quotes used to begin docstring

2015-10-27 Thread Zachary Ware
Zachary Ware added the comment: Documentation is fine for docstrings, it gets the attention of the docs@ list. Library is also fine, since the change actually goes in Lib/. Both is most correct :) Thanks for the report and patch! -- nosy: +zach.ware

[issue25498] Python 3.4.3 core dump with simple sample code

2015-10-28 Thread Zachary Ware
Zachary Ware added the comment: I get the crash on OSX with recent builds of 3.4 and 3.6: Assertion failed: (self->exports == 0), function mbuf_dealloc, file Objects/memoryobject.c, line 115. Abort trap: 6 -- nosy: +jnoller, sbt, zach.ware stage: -> needs patch type: -&

[issue25526] (python2.7.10)ImportError: No module named _ssl

2015-10-31 Thread Zachary Ware
Zachary Ware added the comment: Do "yum install openssl-devel", then rebuild Python. There are probably other modules that also didn't build, setup.py will report them at its end. -- nosy: +zach.ware resolution: -> not a bug stage: -> resolved s

[issue25572] _ssl doesn't build on OSX 10.11

2015-11-06 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Macintosh nosy: +ned.deily, ronaldoussoren, zach.ware stage: -> needs patch versions: +Python 2.7, Python 3.4, Python 3.5, Python 3.6 ___ Python tracker <http://bugs.python.org/issu

[issue25575] idle not working

2015-11-06 Thread Zachary Ware
Zachary Ware added the comment: Check the traceback carefully, it shows exactly where the problem is, though it's not immediately obvious until it's bitten you a time or two. You are running /Users/a5/Desktop/z.py which imports turtle, but you have a turtle.py in /Users/a5/Deskto

[issue25577] os.path.dirname leave left quote and remove right one

2015-11-07 Thread Zachary Ware
Zachary Ware added the comment: As far as os.path.dirname is concerned, you have a file named 'ciao.pdf"' in a directory called '"ciao/come/stai', which is what you're seeing. Since those are legal names, there's no way for os.path.dirname to know wha

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-11-09 Thread Zachary Ware
Zachary Ware added the comment: Stefan Krah wrote: > If anyone worries that "-fp-model strict" will slow > things down: In the Python context these settings have > no measurable impact: A while ago I tested setting/restoring > the control word *for every operation*, a

[issue25589] test_ascii_formatd fails on Mac when built with Intel compiler

2015-11-09 Thread Zachary Ware
Zachary Ware added the comment: This doesn't seem to be a problem on the ICC buildbot; David, did you do anything special for libffi/ctypes? -- nosy: +r.david.murray, zach.ware ___ Python tracker <http://bugs.python.org/is

[issue25589] test_ascii_formatd fails on Mac when built with Intel compiler

2015-11-09 Thread Zachary Ware
Zachary Ware added the comment: Also, I haven't had an issue with this on my own machine. -- ___ Python tracker <http://bugs.python.org/issue25589> ___ ___

[issue25601] test_cpickle failure on the ware-gentoo-x86 buildbot

2015-11-11 Thread Zachary Ware
Zachary Ware added the comment: I also have no idea how that happened, but seems to have been a fluke. Build 101 is fine, and nothing has changed on that box. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25601] test_cpickle failure on the ware-gentoo-x86 buildbot

2015-11-11 Thread Zachary Ware
Zachary Ware added the comment: This also happened on my Windows buildbot: http://buildbot.python.org/all/builders/AMD64%20Windows8.1%20Non-Debug%202.7/builds/195 That build is running again as build 196. -- ___ Python tracker <h

[issue25601] test_cpickle failure on the ware-gentoo-x86 buildbot

2015-11-11 Thread Zachary Ware
Zachary Ware added the comment: Build 196 on the Windows bot is fine. Could be a bizarre test ordering issue? Nothing else should have changed between builds 195 and 196 on the Windows bot. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25603] spelling mistake - 26.1 typing

2015-11-11 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the report! -- nosy: +zach.ware versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue25603> ___ ___

[issue25611] test_deque failure on Gentoo and OpenIndiana buildbots on 2.7

2015-11-12 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware title: test_deque failure on Gentu and OpenIndiana buildbots on 2.7 -> test_deque failure on Gentoo and OpenIndiana buildbots on 2.7 ___ Python tracker <http://bugs.python.org/issu

[issue25676] Bug

2015-11-19 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file41088/Garcinia Cambogia Free Trial UK.html ___ Python tracker <http://bugs.python.org/issue25

<    19   20   21   22   23   24   25   26   27   28   >