[issue44476] "subprocess not supported for isolated subinterpreters" when running venv

2021-06-21 Thread Brian Curtin
Brian Curtin added the comment: I think there was either something stale that got linked wrong or some other kind of build failure, as I just built v3.10.0b3 tag again from a properly cleaned environment and this is no longer occurring. Sorry for the noise. -- stage: -> resol

[issue44476] "subprocess not supported for isolated subinterpreters" when running venv

2021-06-21 Thread Brian Curtin
Brian Curtin added the comment: Hmm. I asked around about this and someone installed 3.10.0-beta3 via pyenv and this worked fine. For whatever it's worth, this was built from source on OS X 10.14.6 via a pretty normal setup of `./configure` with no extra flags and then `make in

[issue44476] "subprocess not supported for isolated subinterpreters" when running venv

2021-06-21 Thread Brian Curtin
New submission from Brian Curtin : I'm currently trying to run my `tox` testing environment—all of which runs under `coverage`—against 3.10b3 and am running into some trouble. I initially thought it was something about tox or coverage, but it looks lower level than that as the venv scri

[issue40406] MagicMock __aenter__ should be AsyncMock(return_value=MagicMock())

2020-05-01 Thread Brian Curtin
Brian Curtin added the comment: graingert: Do you have a workaround for this? I'm doing roughly the same thing with an asyncpg connection pool nested with a transaction and am getting nowhere. async with pg_pool.acquire() as conn: async with conn.transa

[issue21257] Document parse_headers function of http.client

2019-01-18 Thread Brian Curtin
Brian Curtin added the comment: New changeset 478f8291327a3e3ab17b5857699565df43a9e952 by Brian Curtin (Ashwin Ramaswami) in branch 'master': bpo-21257: document http.client.parse_headers (GH-11443) https://github.com/python/cpython/commit/478f8291327a3e3ab17b5857699565

[issue35404] Document how to import _structure in email.message

2019-01-09 Thread Brian Curtin
Brian Curtin added the comment: New changeset e394ba32147f687b6bc7518d461f1d84211698e0 by Brian Curtin (Charles-Axel Dein) in branch 'master': bpo-35404: Clarify how to import _structure in email.message doc (GH-10886) https://github.com/python/cpyt

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-10-08 Thread Brian Curtin
Change by Brian Curtin : -- assignee: docs@python -> brian.curtin resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python

[issue13407] tarfile doesn't support multistream bzipped tar files

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset 8d3b0f49021e6cd25030a1eb979218cfceb44061 by Brian Curtin (Andrés Delfino) in branch '2.7': [2.7] bpo-13407: Mention that bz2/tarfile doesn't support multi-stream bzip2 files (GH-8428) https://github.com/python

[issue27351] Unexpected ConfigParser.read() behavior when passed fileobject

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset 3cd5e8e83c9785d9f505138903c7a50dc964101e by Brian Curtin (Miss Islington (bot)) in branch '3.6': bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123) https://github.com/python/cpyt

[issue27351] Unexpected ConfigParser.read() behavior when passed fileobject

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset b0b8f9bd4e6f78ac7383b4e56cfb6cbacc77da89 by Brian Curtin (Miss Islington (bot)) in branch '3.7': bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123) https://github.com/python/cpyt

[issue27351] Unexpected ConfigParser.read() behavior when passed fileobject

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset e45473e3ca31e5b78dc85cab575f5bb60d5b7f8f by Brian Curtin (Zackery Spytz) in branch 'master': bpo-27351: Fix ConfigParser.read() documentation and docstring (GH-8123) https://github.com/python/cpyt

[issue31370] Remove support for threads-less builds

2018-09-29 Thread Brian Curtin
Brian Curtin added the comment: New changeset eef059657d6b10babdb4831e1148d60cc644ee9a by Brian Curtin (Zackery Spytz) in branch 'master': bpo-31370: Remove references to threadless builds (#8805) https://github.com/python/cpython/commit/eef059657d6b10babdb4831e1148d6

[issue33371] Clarify the predicate parameter of inspect.getmembers

2018-04-26 Thread Brian Curtin
Change by Brian Curtin : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue33371> ___ ___ Pyth

[issue33371] Clarify the predicate parameter of inspect.getmembers

2018-04-26 Thread Brian Curtin
Change by Brian Curtin : -- keywords: +patch pull_requests: +6311 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue33371] Clarify the predicate parameter of inspect.getmembers

2018-04-26 Thread Brian Curtin
New submission from Brian Curtin : It would be helpful to clarify what the *predicate* callable will be called with. I had to look into the source in order to figure out what it was going to receive. -- assignee: brian.curtin components: Documentation messages: 315824 nosy

[issue31985] Deprecate openfp() in aifc, sunau and wave

2017-11-10 Thread Brian Curtin
Brian Curtin added the comment: New changeset 9f914a01affc55abe799afc521ce71612bb495a5 by Brian Curtin in branch 'master': bpo-31985: Deprecate openfp in aifc, sunau, and wave (#4344) https://github.com/python/cpython/commit/9f914a01affc55abe799afc521ce71

[issue31985] Deprecate openfp() in aifc, sunau and wave

2017-11-09 Thread Brian Curtin
Brian Curtin added the comment: I think https://github.com/python/cpython/pull/4344 covers what you're looking for. -- ___ Python tracker <https://bugs.python.org/is

[issue31985] Deprecate openfp() in aifc, sunau and wave

2017-11-09 Thread Brian Curtin
Brian Curtin added the comment: Serhiy, where should a common test that covers all three of these go? I'm not seeing an obvious place for it. -- ___ Python tracker <https://bugs.python.org/is

[issue31985] Deprecate aifc.openfp

2017-11-08 Thread Brian Curtin
Brian Curtin added the comment: i was going to do them as separate bugs and PRs per module, but if one is fine then i can do that. Updating the title as well since nothing is beings removed (was originally going to suggest skipping to removal but won’t do that). -- title: Deprecate

[issue31985] Deprecate/remove aifc.openfp

2017-11-08 Thread Brian Curtin
Change by Brian Curtin : -- keywords: +patch pull_requests: +4302 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue31985] Deprecate/remove aifc.openfp

2017-11-08 Thread Brian Curtin
New submission from Brian Curtin : Since 1993, aifc.openfp has simply pointed to aifc.open as a matter of backwards compatibility. See https://github.com/python/cpython/commit/7bc817d5ba917528e8bd07ec461c635291e7b06a for the exact change. aifc.openfp is both undocumented and untested, and in

[issue29521] Minor warning messages when compiling documentation

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

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2017-03-24 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue29553> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue29639] test suite intentionally avoids referring to localhost, destroying abstraction away from IPv6 vs IPv4

2017-02-27 Thread Brian Curtin
Brian Curtin added the comment: I echo Paul. I think the last time I would have seen a problem was on Windows 2000, which is unsupported per PEP-11. +1 to using localhost -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue29

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2017-02-16 Thread Brian Curtin
Brian Curtin added the comment: PR 120 looks fine to me, but Steven Bethard is the maintainer of argparse so he's better suited to say for sure if exclusive groups are ok how they are in 120 or if 117 is actually the way forward. -- assignee: ->

[issue29553] Argparser does not display closing parentheses in nested mutex groups

2017-02-15 Thread Brian Curtin
Brian Curtin added the comment: Dropping the inner brackets sounds like a better move to me. -- nosy: +bethard, brian.curtin ___ Python tracker <http://bugs.python.org/issue29

[issue29387] Tabs vs spaces FAQ out of date

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

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2016-07-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7769> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17128] OS X system openssl deprecated - installer should build local libssl

2016-07-05 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue17128> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6792] Distutils-based installer does not detect 64bit versions of Python

2016-04-22 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue6792> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15984] Wrong documentation for PyUnicode_FromObject() and PyUnicode_FromEncodedObject()

2016-04-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15984> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14597] Cannot unload dll in ctypes until script exits

2016-02-16 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue14597> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9566] Compilation warnings under x64 Windows

2015-09-24 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9566> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9262] IDLE: Use tabbed shell and edit windows

2015-08-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9262> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue2122] mmap.flush does not check for errors on windows

2015-05-07 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue2122> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1222585] C++ compilation support for distutils

2015-05-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue1222585> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19050] crash while writing to a closed file descriptor

2015-02-15 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue19050> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12239] msilib VT_EMPTY SummaryInformation properties raise an error (suggest returning None)

2015-02-14 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue12239> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19433] Define PY_UINT64_T on Windows 32bit

2015-02-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue19433> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue4832> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1284316] Win32: Security problem with default installation directory

2014-10-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue1284316> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8110] subprocess.py doesn't correctly detect Windows machines

2014-10-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8110> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11598] missing afxres.h error when building bdist_wininst in Visual Studio 2008 Express

2014-10-01 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue11598> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue900092] hotshot.stats.load fails with AssertionError

2014-09-05 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue900092> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1425127] os.remove OSError: [Errno 13] Permission denied

2014-08-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue1425127> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9205] Parent process hanging in multiprocessing if children terminate unexpectedly

2014-08-24 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9205> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2014-08-23 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8296> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2014-08-18 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17797] Visual C++ 11.0 reports fileno(stdin) == 0 for non-console program

2014-08-18 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue17797> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7334] ElementTree: file locking in Jython 2.5 (OSError on Windows)

2014-08-04 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7334> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7897] Support parametrized tests in unittest

2014-07-31 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7897> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7944] Use the 'with' statement in conjunction with 'open' throughout test modules

2014-07-31 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7944> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13719] bdist_msi upload fails

2014-07-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue13719> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15207] mimetypes.read_windows_registry() uses the wrong regkey, creates wrong mappings

2014-07-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15207> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16066] Truncated POST data in CGI script on Windows 7

2014-07-29 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue16066> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4722] _winreg.QueryValue fault while reading mangled registry values

2014-07-29 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue4722> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9665] Buid issues on Cygwin - _curses, _curses_panel, and _io

2014-07-29 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9665> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4198] os.path.normcase gets fooled on windows with mapped linux network drive

2014-07-29 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue4198> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11990] redirected output - stdout writes newline as \n in windows

2014-07-29 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue11990> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8232] webbrowser.open incomplete on Windows

2014-07-28 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8232> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17896] Move Windows external libs from \..\ to \externals

2014-07-19 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue17896> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17667] Windows: build with "build_pgo.bat -2" fails to optimize python.dll

2014-07-19 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue17667> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13837] test_shutil fails with symlinks enabled under Windows

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue13837> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15411] os.chmod() does not follow symlinks on Windows

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15411> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10305] Cleanup up ResourceWarnings in multiprocessing

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue10305> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9949> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11551] test_dummy_thread.py test coverage improvement

2014-07-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue11551> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9699] invalid call of Windows API _popen() generating The input line is too long error message

2014-07-15 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9699> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9099] multiprocessing/win32: WindowsError: [Error 0] Success on Pipe()

2014-07-15 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9099> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11702] dir on return value of msilib.OpenDatabase() crashes python

2014-07-15 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue11702> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7687] Bluetooth support untested

2014-07-14 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue7687> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11344] Add os.path.splitpath(path) function

2014-07-13 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue11344> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-07-13 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15968> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15962] Windows STDIN/STDOUT Redirection is actually FIXED

2014-07-13 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15962> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14484] missing return in win32_kill?

2014-07-13 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue14484> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20117] subprocess on Windows: wrong return code with shell=True

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue20117> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16895] Batch file to mimic 'make' on Windows

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue16895> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10837] Issue catching KeyboardInterrupt while reading stdin

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue10837> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8075] Windows (Vista/7) install error when choosing to compile .py files

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8075> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8972] subprocess.list2cmdline doesn't quote the & character

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8972> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1669539] Improve Windows os.path.join (ntpath.join) "smart" joining

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue1669539> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15414] os.path.join behavior on Windows (ntpath.join) is unexpected and not well documented

2014-07-12 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue15414> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8231] Unable to run IDLE without write-access to home directory

2014-07-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8231> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16229] Demo *redemo.py* lacking in Windows installation

2014-07-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue16229> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14750] Tkinter application doesn't run from source build on Windows

2014-07-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue14750> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9937] _winreg.EnumValue causes MemoryError

2014-07-09 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9937> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9782] _multiprocessing.c warnings under 64-bit Windows

2014-07-09 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9782> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9624] Error 2755, "failure to find drive" when installing Python

2014-07-09 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9624> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-07-04 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue16296> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17652] Add skip_on_windows decorator to test.support

2014-07-04 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue17652> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8631] subprocess.Popen.communicate(...) hangs on Windows

2014-07-02 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8631> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9191] winreg.c:Reg2Py() may leak memory (in unusual circumstances)

2014-06-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9191> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13101] Module Doc viewer closes when browser window closes on Windows 8

2014-06-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue13101> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10765] Build regression from automation changes on windows

2014-06-07 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue10765> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1559298] test_popen fails on Windows if installed to "Program Files"

2014-06-07 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue1559298> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8576] test_support.find_unused_port can cause socket conflicts on Windows

2014-06-07 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue8576> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9194] winreg:fixupMultiSZ should check that P < Q in the inner loop

2014-06-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue9194> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue900092] hotshot.stats.load fails with AssertionError

2014-03-19 Thread Brian Curtin
Brian Curtin added the comment: It remains a valid issue. Time is not a factor. -- ___ Python tracker <http://bugs.python.org/issue900092> ___ ___ Python-bug

[issue900092] hotshot.stats.load fails with AssertionError

2014-03-19 Thread Brian Curtin
Brian Curtin added the comment: It was brought to my attention that this is still an issue and that it was closed. Reopening. -- resolution: wont fix -> status: closed -> open ___ Python tracker <http://bugs.python.org/is

[issue20717] test_4_daemon_threads() fails randomly on "x86 Windows Server 2003 [SB] 3.x"

2014-02-21 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker <http://bugs.python.org/issue20717> ___ ___ Python-bugs-list mailing list Unsubscribe:

  1   2   3   4   5   6   7   8   9   10   >