[issue20035] Suppress 'os.environ was modified' warning on Tcl/Tk tests

2014-03-21 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file33233/suppress_environ_warning.diff ___ Python tracker <http://bugs.python.org/issue20035> ___ ___ Pytho

[issue20035] Suppress 'os.environ was modified' warning on Tcl/Tk tests

2014-03-21 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file33235/suppress_environ_warning.v2.diff ___ Python tracker <http://bugs.python.org/issue20035> ___ ___

[issue21017] Enable Debug Tix build on Windows

2014-03-22 Thread Zachary Ware
Zachary Ware added the comment: Thank you, Benjamin and Martin! Debug Tix build now enabled. -- assignee: -> zach.ware resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tr

[issue21046] Document formulas used in statistics

2014-03-23 Thread Zachary Ware
New submission from Zachary Ware: >From docs@: On Sun, Mar 23, 2014 at 5:55 PM, Alex wrote: > http://docs.python.org/dev/library/statistics.html > > I know math. I ended the institute. But in Russia. Doc doesn't show me WHAT > FORMULAS are used for mean, median, media

[issue21059] idle_test.test_warning failure

2014-03-25 Thread Zachary Ware
Zachary Ware added the comment: Indeed, although honestly I can't figure out exactly why. However, #20035 should fix the failures; I haven't committed it because the patch is in C and I can't guarantee that I haven't missed anything big. If either of you (or anyone e

[issue21059] idle_test.test_warning failure

2014-03-25 Thread Zachary Ware
Changes by Zachary Ware : -- assignee: -> zach.ware dependencies: +Suppress 'os.environ was modified' warning on Tcl/Tk tests versions: +Python 3.5 ___ Python tracker <http://bugs.pytho

[issue15968] Incorporate Tcl/Tk/Tix into the Windows build process

2014-03-28 Thread Zachary Ware
Zachary Ware added the comment: Terry J. Reedy added the comment: > I just pulled and recompiled and got makefile error messages that I do not > remember seeing: > 13>EXEC : error : ..\..\tix-8.4.3.4 doesn't exist. This is the output of this line: > 13>C:\Program

[issue17846] Building Python on Windows - Supplementary info

2014-03-29 Thread Zachary Ware
Zachary Ware added the comment: Devguide patch review, review comment lines start with # (in column 1) diff -r e665cddd6cde setup.rst --- a/setup.rst Sun Mar 23 19:31:22 2014 -0400 +++ b/setup.rst Tue Mar 25 07:47:54 2014 -0500 @@ -217,8 +217,9 @@ Windows ''''''&

[issue17846] Building Python on Windows - Supplementary info

2014-03-29 Thread Zachary Ware
Changes by Zachary Ware : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue17846> ___ ___ Python-bugs-list mailing list Un

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-03-29 Thread Zachary Ware
Zachary Ware added the comment: Here's an even less ugly new version of the patch; it does everything with multi-byte strings instead of wide-char strings (so that there's just one conversion of prefix from wcs to mbs at the beginning of the block, and TCL_VERSION is used direct

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-03-29 Thread Zachary Ware
Zachary Ware added the comment: Also, I have confirmed that the blind symlink issue in non-English Windows Vista (issue3881) is not a problem in Tcl/Tk 8.6. That issue was easy to reproduce in a standard installation of Python 3.3 (with Tcl/Tk 8.5) on German Windows Vista by setting

[issue21107] Add pgen.vcxproj to allow regenerating grammar files on Windows

2014-03-30 Thread Zachary Ware
New submission from Zachary Ware: Here's a patch to allow building (and using) pgen on Windows. All changes outside of PCbuild are solely to avoid compiler warnings, namely 4 instances of C4005 for PGEN being redefined and 2 instances of C4018, "'<' : signed/unsigned m

[issue19501] Buildbot testing of 3.2 broken

2014-03-31 Thread Zachary Ware
Zachary Ware added the comment: With the demise of the 3.2 buildbot configuration, closing this issue. -- resolution: -> out of date stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue19962] Create a 'python.bat' script to invoke interpreter from source root

2014-03-31 Thread Zachary Ware
Zachary Ware added the comment: This appears to work correctly for PGO builds and x64 builds. Does anyone have any objections to this, or suggestions for improvement? -- versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.

[issue21129] Segfault in python interpreter

2014-04-01 Thread Zachary Ware
Zachary Ware added the comment: If you're using OS X 10.9+, you'll need to upgrade your Python installation. See #18458. -- nosy: +zach.ware resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> interactive interpreter cra

[issue21141] Don't mention Perl in Windows build output

2014-04-02 Thread Zachary Ware
New submission from Zachary Ware: Attached is a patch that prevents mentioning Perl in the Windows build output, thereby avoiding giving the indication that Perl is necessary to build Python. To make this work, the patch converts PCbuild/build_ssl.py into PCbuild/prepare_ssl.py and removes

[issue21141] Don't mention Perl in Windows build output

2014-04-03 Thread Zachary Ware
Zachary Ware added the comment: Here's a slightly revised patch, including documentation changes in PCbuild/readme.txt. Also, this patch doesn't rename build_ssl.(bat|py), so Rietveld should accept the patch as reviewable. I think the renames should actually happ

[issue21141] Don't mention Perl in Windows build output

2014-04-03 Thread Zachary Ware
Zachary Ware added the comment: Sure; currently, the "ssl" project emits messages from build_ssl.py concerning the finding of Perl. On a machine with a usable Perl, it's just " Found a working perl at 'C:\Perl\bin\perl.exe'" On machines without Perl, it

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-04-07 Thread Zachary Ware
Zachary Ware added the comment: Serhiy Storchaka wrote: > TCL_VERSION should be set before call of Tcl_FindExecutable() (for correct Tcl > encodings initialization). Tcl_FindExecutable() is called in > PyInit__tkinter(). I assume you mean TCL_LIBRARY (since TCL_VERSION is #defined

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-04-14 Thread Zachary Ware
Zachary Ware added the comment: Ok, debugging again with better breakpoints, I see what I missed before, so here's a new patch that does things a little differently. This patch sets the TCL_LIBRARY envvar just before calling Tcl_FindExecutable, and unsets it after the call. The $tcl_li

[issue21219] WARNING: Inline literal start-string without end-string.

2014-04-14 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +orsenthil ___ Python tracker <http://bugs.python.org/issue21219> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21289] make.bat not building documentation

2014-04-17 Thread Zachary Ware
Zachary Ware added the comment: I left a review on Rietveld, which should have sent you an email. Thanks for the report and patch! If you plan on submitting anything more than the most trivial of patches, could you please sign the contributor agreement[1][2]? Thanks! [1]The form: https

[issue21289] make.bat not building documentation

2014-04-18 Thread Zachary Ware
Zachary Ware added the comment: Your more recent patch looks like it's missing the changes to Doc/make.bat, which I assume was unintentional :). Also, thinking about it again, it would be good to use a %SPHINXBUILD% variable rather than hard-coding "sphinx-build" into the s

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-18 Thread Zachary Ware
Zachary Ware added the comment: Can you tell us some version numbers, please? Specifically, which micro version of Python 2.7 (e.g. 2.7.6) on both platforms, and what version of Tcl on Linux? Tcl on Windows should be version 8.5.2; if it's different, please tell us that too. Here&

[issue21289] make.bat not building documentation

2014-04-18 Thread Zachary Ware
Zachary Ware added the comment: Fixed, thanks for the patch! I went ahead and implemented my comments and committed it. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python track

[issue21314] Bizarre help

2014-04-20 Thread Zachary Ware
Zachary Ware added the comment: 1) This was due to a typo. The release of Python 3.4 saw the introduction of new introspection information on many C-implemented functions thanks to Argument Clinic (see PEP 436, I think it is). As part of that (still ongoing) transition, the default doctrings

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Zachary Ware
Zachary Ware added the comment: >From some testing, this looks like a Tcl/Tk bug, fixed somewhere between 8.5.9 >and 8.5.11: Python 3.2.5 which shipped with Tcl/Tk 8.5.9 shows this bug; >Python 3.3.5 which shipped with Tcl/Tk 8.5.11 does not, and Python 2.7 built >with Tcl/Tk 8.

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-21 Thread Zachary Ware
Zachary Ware added the comment: Any opinions on which version to update to? 8.5.11 is easy and available and fixes the bug; 8.5.15 is the newest 8.5 but not on svn.python.org; 8.6.1 is available and is also what 3.4 (and currently 3.5) ships with

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-04-21 Thread Zachary Ware
Zachary Ware added the comment: Terry J. Reedy wrote: > Moving News items from the repository to the tracker, where I think > they initially belong anyway, would also remove them as an issue for > a future gating system. I think News items are best left in the repository just so tha

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: 8.5.15 sounds good to me; here's the patch to 2.7 once the 8.5.15 sources are on svn.python.org as tcl-8.5.15.0 and tk-8.5.15.0, no modifications necessary. -- keywords: +patch Added file: http://bugs.python.org/file35002/issue21303-2.7-tcl-upgrade

[issue21303] Python 2.7 Spinbox Format Behaves Differently On Windows Versus Linux

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: Done. Michael, thanks for the report! -- assignee: -> zach.ware resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <http://bugs.python

[issue20565] Update Tcl/Tk version for buildbots

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: 2.7 is now updated to 8.5.15, 3.3 is in security mode, and 3.4+ are on 8.6.1. -- nosy: +zach.ware resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.5 -Python 3.3 ___ Pytho

[issue20560] tkFileFilter.c: ostypeCount not initialized?

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: Terry, could you try this again with a fresh build of Tcl/Tk 8.5.15? Update your 2.7 to 2b8d9276ad5b or beyond and run Tools/buildbot/external.bat again, it should take care of it. -- nosy: +zach.ware ___ Python

[issue17160] test_urllib2net fails

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: This was already fixed, just not before 2.7.6 was released. -- nosy: +zach.ware status: open -> closed ___ Python tracker <http://bugs.python.org/issu

[issue17160] test_urllib2net fails

2014-04-22 Thread Zachary Ware
Zachary Ware added the comment: Actually, that's not quite right. It was fixed in 2.7.6, then changes to the website broke it again and it has been fixed again since then. Either way, it ain't broke right now ;) -- ___ Python trac

[issue21335] Update importlib.__init__ to reset _frozen_importlib's loader to SourceFileLoader

2014-04-23 Thread Zachary Ware
Changes by Zachary Ware : -- title: Update importlib.__init__ to reset _frozen_imnportlib's loader to SourceFileLoader -> Update importlib.__init__ to reset _frozen_importlib's loader to SourceFileLoader ___ Python tracker <http:/

[issue17386] Bring Doc/make.bat as close to Doc/Makefile as possible

2014-04-23 Thread Zachary Ware
Zachary Ware added the comment: Having looked at this again, the current patch is just far bigger than it needs to be and tries to do too much, not to mention being rather out of date now. So, here's a much less ambitious, much simpler patch with many fewer ways it can go wrong (but als

[issue9764] Tools/buildbot/external.bat should download and built tix

2014-04-23 Thread Zachary Ware
Zachary Ware added the comment: This is fixed in 3.5, PCbuild/tix.vcxproj builds Tix in Debug and Release modes. -- nosy: +zach.ware resolution: -> fixed stage: needs patch -> resolved status: open -> closed versions: +Python 3.5 -P

[issue9765] tcl-8 vs tcl8

2014-04-23 Thread Zachary Ware
Zachary Ware added the comment: PCbuild/tix.vcxproj explicitly sets TCL_DIR and TK_DIR in the command line used to build Tix, using the paths used by the rest of the solution and the Tools/buildbot scripts; would the attached patch now be acceptable (for 3.5 only)? -- nosy

[issue9765] tcl-8 vs tcl8

2014-04-23 Thread Zachary Ware
Zachary Ware added the comment: Done, thanks! -- assignee: -> zach.ware resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker <http://bugs.pytho

[issue21337] Add tests for Tix

2014-04-23 Thread Zachary Ware
New submission from Zachary Ware: We should have some tests for Tix, which currently has none. The Windows buildbots will be able to run the tests, but Tix is not guaranteed to be available elsewhere. -- components: Tests, Tkinter keywords: easy messages: 217089 nosy: zach.ware

[issue21344] save scores or ratios in difflib get_close_matches

2014-04-24 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> patch review versions: -Python 2.7 ___ Python tracker <http://bugs.python.org/issue21344> ___ ___ Python-bugs-list mai

[issue21344] save scores or ratios in difflib get_close_matches

2014-04-24 Thread Zachary Ware
Zachary Ware added the comment: Russell Ballestrini wrote: > Determine if docstrings are enough to document the new function. No, Doc/library/difflib.rst will need an update. (Btw, I removed 2.7 from versions because 2.7 is not open to new features, bugs and security-critical enhanceme

[issue21346] typos in test_itertools.py

2014-04-24 Thread Zachary Ware
New submission from Zachary Ware: Fixed, thanks for the patch! changeset 90450:1beb3e0507fa 2.7 Issue #21346: Fix typos in test_itertools. Patch by Brian Kearns. changeset 90451:901b9afc918e 3.4 Issue #21346: Fix typo, make message consistent in test_itertools. Pointed out by Brian Kearns

[issue21349] crash in winreg SetValueEx with memoryview

2014-04-25 Thread Zachary Ware
New submission from Zachary Ware: The new test fails with the patch applied: == ERROR: test_setvalueex_with_memoryview (__main__.LocalWinregTests) -- Traceback

[issue21352] improve indexing

2014-04-25 Thread Zachary Ware
Changes by Zachary Ware : -- versions: -Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue21352> ___ ___ Python-bugs-list mailin

[issue17386] Bring Doc/make.bat as close to Doc/Makefile as possible

2014-04-28 Thread Zachary Ware
Zachary Ware added the comment: New patch, fixes a typo bug in a useless statement (by removing the statement) and a few pesky tabs that made their way into make.bat. Also, a little better organization in the vars at the top. -- Added file: http://bugs.python.org/file35079/issue17386

[issue21314] Document '/' in signatures

2014-04-29 Thread Zachary Ware
Changes by Zachary Ware : -- keywords: +easy stage: -> needs patch status: -> open type: -> enhancement versions: +Python 3.5 ___ Python tracker <http://bugs.python.or

[issue21402] tkinter.ttk._val_or_dict assumes tkinter._default_root exists

2014-04-30 Thread Zachary Ware
Zachary Ware added the comment: Can you provide an example of when this happens? Note that tkinter.ttk._val_or_dict is a private function and should not be called by user code. -- nosy: +gpolo, serhiy.storchaka, zach.ware stage: -> test needed type: crash -> be

[issue18604] Consolidate gui available checks in test.support

2014-04-30 Thread Zachary Ware
Zachary Ware added the comment: If there are no objections forthcoming, I'll try to get this applied to 3.4/3.5 later this week, then look into backporting to 2.7. -- assignee: -> zach.ware components: +Tests, Tkinter versions: +Python 3.5 Added file: http://bugs.python.org/f

[issue19962] Create a 'python.bat' script to invoke interpreter from source root

2014-04-30 Thread Zachary Ware
Zachary Ware added the comment: Thanks for the up-vote, Tim :) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <http://bugs.python.or

[issue21411] Enable Treat Warning as Error on 32-bit Windows

2014-05-01 Thread Zachary Ware
New submission from Zachary Ware: Python 3.4 and 3.5 both compile without warnings on 32-bit Windows, so we should turn on Treat Warning as Error (/WX option to cl.exe). Setting that property in pyproject.props sets it for all projects, and the setting does not affect "Makefile project

[issue21439] Numerous minor issues in Language Reference

2014-05-05 Thread Zachary Ware
New submission from Zachary Ware: Reported by Feliks Kluzniak on docs@: """ Hello! I have been reading the Language Reference Manual in order to teach myself Python 3. I noticed several minor errors, and a much larger number of linguistic or editorial infelicities. I have

[issue21439] Numerous minor issues in Language Reference

2014-05-05 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +docs@python ___ Python tracker <http://bugs.python.org/issue21439> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21366] Document that return in finally overwrites prev value

2014-05-05 Thread Zachary Ware
Zachary Ware added the comment: How's this, or is it too much? -- keywords: +patch nosy: +zach.ware Added file: http://bugs.python.org/file35154/issue21366.diff ___ Python tracker <http://bugs.python.org/is

[issue21366] Document that return in finally overwrites prev value

2014-05-05 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> patch review type: behavior -> enhancement versions: +Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/i

[issue18604] Consolidate gui available checks in test.support

2014-05-05 Thread Zachary Ware
Zachary Ware added the comment: Thanks Ned. Unfortunately, I don't have a Mac to test on, so I can't help much with figuring out what's going on. -- ___ Python tracker <http://bugs.pyt

[issue18314] Have os.unlink remove junction points

2014-05-05 Thread Zachary Ware
Zachary Ware added the comment: Just skimming, I noticed something about replacing calloc() with PyMem_RawAlloc; note that there is now PyMem_Calloc or PyMem_RawCalloc that you should be able to use if you prefer. See #21233. -- nosy: +zach.ware

[issue21442] Win32 compiler warning in PyBytes_Concat

2014-05-05 Thread Zachary Ware
New submission from Zachary Ware: Issue #21377 introduced a compiler warning on Windows: ..\Objects\bytesobject.c(2824): warning C4018: '>' : signed/unsigned mismatch [P:\ath\to\cpython\PCbuild\pythoncore.vcxproj] -- components: Build, Windows messages: 217942 nosy: ha

[issue21393] Python/random.c: close hCryptProv at exit

2014-05-05 Thread Zachary Ware
Zachary Ware added the comment: LGTM, Tim. -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue21393> ___ ___ Python-bugs-list mailing list Unsub

[issue21440] Use support.rmtree in test_zipfile

2014-05-05 Thread Zachary Ware
Zachary Ware added the comment: I don't see the intermittent failures (this machine may well just be too slow). The patch looks good and doesn't cause failures, though, so +1 from me. -- ___ Python tracker <http://bugs.python.o

[issue21442] Win32 compiler warning in PyBytes_Concat

2014-05-06 Thread Zachary Ware
Zachary Ware added the comment: Declaring oldsize as Py_ssize_t instead of size_t at Objects/bytesobject.c:2812 takes care of the warning, but I'm not comfortable saying that's a correct change. -- ___ Python tracker <http://bu

[issue21442] Win32 compiler warning in PyBytes_Concat

2014-05-06 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +tim.golden ___ Python tracker <http://bugs.python.org/issue21442> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21366] Document that return in finally overwrites prev value

2014-05-06 Thread Zachary Ware
Zachary Ware added the comment: Done. Thanks pointing out just how redundant that parenthetical was (I don't know how that slipped through my brain...), David. And thank you Jon for the report! -- resolution: -> fixed stage: patch review -> resolved status: open -> c

[issue21442] Win32 compiler warning in PyBytes_Concat

2014-05-06 Thread Zachary Ware
Zachary Ware added the comment: I should have looked a little harder, thanks Tim! -- assignee: -> zach.ware resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker <http://bugs.python

[issue10752] build_ssl.py is relying on unreliable behaviour of os.popen

2014-05-06 Thread Zachary Ware
Zachary Ware added the comment: Still relevant, insofar as having Perl available is relevant. That is, you only need Perl available if you're using vanilla OpenSSL sources, not if you're using sources pulled from svn.python.org (which most people should do, I would think). I have

[issue19643] shutil rmtree fails on readonly files in Windows

2014-05-06 Thread Zachary Ware
Zachary Ware added the comment: I'm good with just adding an example to the docs, along the lines of Paul's del_rw. I think it would be better to use a more conservative example though, something like: def readonly_handler(rm_func, path, exc_info): if issubclass(

[issue19643] shutil rmtree fails on readonly files in Windows

2014-05-07 Thread Zachary Ware
Zachary Ware added the comment: Fair point, Paul. Patch looks good to me, Tim, barring a couple of nits pointed out on Rietveld. -- ___ Python tracker <http://bugs.python.org/issue19

[issue19643] shutil rmtree fails on readonly files in Windows

2014-05-07 Thread Zachary Ware
Zachary Ware added the comment: LGTM! -- stage: -> commit review ___ Python tracker <http://bugs.python.org/issue19643> ___ ___ Python-bugs-list mai

[issue18492] Allow all resources if not running under regrtest.py

2014-05-07 Thread Zachary Ware
Zachary Ware added the comment: Here's a new and better patch. This patch keeps the regrtest_run global in support and moves the regrtest-or-not check into is_resource_enabled to make is_resource_enabled, requires, and requires_resource consistent with each other and in a way that

[issue21141] Don't mention Perl in Windows build output

2014-05-09 Thread Zachary Ware
Zachary Ware added the comment: Committed. Thanks for the review, Martin, and for the votes of confidence Tim and Antoine! -- assignee: -> zach.ware resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Py

[issue10752] build_ssl.py is relying on unreliable behaviour of os.popen

2014-05-09 Thread Zachary Ware
Zachary Ware added the comment: The patch looks good to me (only tested on a Perl-less machine, though). It applies cleanly on 3.4, which I think is worth committing. It still merges forward cleanly to default, post-#21141. I suspect it would even apply fairly cleanly to 2.7, but I'

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-05-09 Thread Zachary Ware
Zachary Ware added the comment: Here's all the patch that should be necessary to do the upgrade. Running test_ssl on 2.7 with 1.0.1g I do have a failure: == ERROR: test_socketserver (test.test_ssl.ThreadedTests) Us

[issue21452] make_buildinfo.exe with VS2013 fails due ill-formed IntDir path

2014-05-09 Thread Zachary Ware
Zachary Ware added the comment: Your patch looks fine to me, Tim. -- ___ Python tracker <http://bugs.python.org/issue21452> ___ ___ Python-bugs-list mailin

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-05-09 Thread Zachary Ware
Zachary Ware added the comment: Thanks, Steve. Nick, I assume 1.0.1g is the target version? -- ___ Python tracker <http://bugs.python.org/issue21462> ___ ___

[issue21506] Windows MSI installer should mklink (symlink) python.exe to python2.7.exe

2014-05-14 Thread Zachary Ware
Zachary Ware added the comment: A similar thought I've had is to add a feature to the PEP397 launcher, allowing it to figure out Python version from a suffix on its executable name and add symlinks to it for each installed version of Python. That way PATH wouldn't need to be modifi

[issue21534] 404 on documentation download links

2014-05-19 Thread Zachary Ware
New submission from Zachary Ware: docs@ has received several reports from people unable to download documentation from docs.python.org/[23]/download.html since the release of 3.4.1rc1 and 2.7.7rc1. -- assignee: docs@python components: Documentation messages: 218792 nosy

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-05-21 Thread Zachary Ware
Zachary Ware added the comment: Ping. I still want to get this in, but not without a proper review. -- ___ Python tracker <http://bugs.python.org/issue20

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-05-22 Thread Zachary Ware
Zachary Ware added the comment: Thank you, Serhiy; those are exactly the kinds of things I don't know enough about and had concerns about. I'll take another stab and see if I can come up with anything better. Suggestions welcome :) --

[issue21534] 404 on documentation download links

2014-05-22 Thread Zachary Ware
Zachary Ware added the comment: Reports continue to pour in on docs@, 25 reports for 2.7.7rc1 and 3.4.1 so far by my count. Is there anything I can do to help on this? It looks to me like the files just haven't been uploaded, but I don't know where exactly they should be uploaded

[issue21534] 404 on documentation download links

2014-05-22 Thread Zachary Ware
Zachary Ware added the comment: You're right, Ned; 3.4.1 is working for me now, but 2.7.7rc1 is still broken. (Sorry for not checking again!) -- ___ Python tracker <http://bugs.python.org/is

[issue21439] Numerous minor issues in Language Reference

2014-05-27 Thread Zachary Ware
Zachary Ware added the comment: A few comments on the committed patch. The quoted diff is trimmed to just the hunks I have comments on. On Tue, May 27, 2014 at 12:21 AM, raymond.hettinger wrote: > diff --git a/Doc/reference/compound_stmts.rst > b/Doc/reference/compound_stmts.rst &

[issue21439] Numerous minor issues in Language Reference

2014-05-27 Thread Zachary Ware
Changes by Zachary Ware : -- stage: test needed -> commit review ___ Python tracker <http://bugs.python.org/issue21439> ___ ___ Python-bugs-list mailing list Un

[issue11468] Improve unittest basic example in the doc

2014-05-27 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue11468> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21592] Make statistics.median run in linear time

2014-05-28 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +steven.daprano stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue21592> ___ ___ Python-bugs-list mai

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-05-29 Thread Zachary Ware
Zachary Ware added the comment: Steve or Tim, did one of you want to commit this since you can run a clean test? -- ___ Python tracker <http://bugs.python.org/issue21

[issue14097] Improve the "introduction" page of the tutorial

2014-05-29 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue14097> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-05-30 Thread Zachary Ware
Zachary Ware added the comment: Go ahead and commit; it will be up to Benjamin to cherry-pick it to his release branch (or to ask you to do it). -- ___ Python tracker <http://bugs.python.org/issue21

[issue14097] Improve the "introduction" page of the tutorial

2014-05-30 Thread Zachary Ware
Zachary Ware added the comment: How's this for a 2.7 backport? The least direct part of the backport is the section on division; I pretty much had to completely rewrite the paragraph in 2.x terms and I'm not certain that I took the best approach. -- stage: commit revie

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-05-30 Thread Zachary Ware
Zachary Ware added the comment: Looks like the AMD64 buildbot isn't happy with OpenSSL 1.0.1g: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%202.7/builds/1223/steps/compile/logs/stdio Here's my best stab-in-the-dark guess at fixing what's wrong; I don't

[issue10652] test___all_ + test_tcl fails (Windows installed binary)

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: As for what's actually wrong here, Hirokazu Yamamoto's diagnosis in msg123615 (adjusted for 2.7) is correct. Either of the last two patches I posted should work to fix this issue, but they're both just band-aids rather than a real, once-and-for-a

[issue21623] build ssl failed use vs2010 express

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: The first error makes no sense to me. What version of OpenSSL are you building? How did you invoke the Python build (command line, or through the VS GUI)? As for the second error, all of the VS-generated files in PCbuild have a UTF-8 BOM, which is what the

[issue21623] build ssl failed use vs2010 express

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: The cause of the second error should be fixed now. -- ___ Python tracker <http://bugs.python.org/issue21623> ___ ___ Python-bug

[issue21623] build ssl failed use vs2010 express

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: I will note that VC++ 2010 Express is what I use on one of my usual machines, and don't recall ever having this issue. -- ___ Python tracker <http://bugs.python.org/is

[issue21533] built-in types dict docs - construct dict from iterable, not iterator

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: LGTM. -- ___ Python tracker <http://bugs.python.org/issue21533> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18492] Allow all resources if not running under regrtest.py

2014-06-02 Thread Zachary Ware
Zachary Ware added the comment: You convinced me too, Serhiy :). Committed, without the regrtest_run flag. Thanks for review. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python track

[issue21462] PEP 466: upgrade OpenSSL in the Python 2.7 Windows builds

2014-06-02 Thread Zachary Ware
Changes by Zachary Ware : -- stage: -> resolved ___ Python tracker <http://bugs.python.org/issue21462> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue21427] installer not working

2014-06-03 Thread Zachary Ware
Zachary Ware added the comment: Nosy-ing the Windows installer experts; I haven't had any problems with this and am not familiar with the MSI library or tool. -- nosy: +loewis, steve.dower ___ Python tracker <http://bugs.python.org/is

[issue21427] installer not working

2014-06-03 Thread Zachary Ware
Zachary Ware added the comment: Martin v. Löwis wrote: > I never got to test this out of lack of a 32-bit Windows installation, > apparently, it doesn't work. It does work on my 32-bit machine, though; I have had no issues installing 32-bit Python 3.3 or 3.4 on 32-bit Windows

[issue19980] Improve help('non-topic') response

2014-06-03 Thread Zachary Ware
Changes by Zachary Ware : -- nosy: +zach.ware ___ Python tracker <http://bugs.python.org/issue19980> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    7   8   9   10   11   12   13   14   15   16   >