[issue15716] Ability to specify the PYTHONPATH via a command line flag

2012-11-27 Thread Brian Curtin
Brian Curtin added the comment: Colin - it should work in the same way that setting PYTHONPATH as an environment variable would work, e.g., semi-colon is the separator on Windows. -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.

[issue16571] Iterating over inconsistently-indented code block causes execution of code only on last iteration of loop

2012-11-28 Thread Brian Berard
New submission from Brian Berard: When a loop (for loop in this case) contains multiple lines of code, if the lines are inconsistently indented, the for loop will only execute those lines on the final pass through the loop with no type of warning regarding indentation error. Ex. for i in

[issue16571] Iterating over inconsistently-indented code block causes execution of code only on last iteration of loop

2012-11-28 Thread Brian Berard
Changes by Brian Berard : -- type: behavior -> enhancement ___ Python tracker <http://bugs.python.org/issue16571> ___ ___ Python-bugs-list mailing list Un

[issue16571] Iterating over inconsistently-indented code block causes execution of code only on last iteration of loop

2012-11-28 Thread Brian Berard
Brian Berard added the comment: @nedbat I'm able to run that code as is and receive no such error. With the -tt option, I do receive an indentation error. I will keep that in mind. -- ___ Python tracker <http://bugs.python.org/is

[issue16651] Find out what stdlib modules lack a pure Python implementation

2012-12-10 Thread Brian Curtin
Brian Curtin added the comment: winreg does not have a pure equivalent, nor could it -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue16

[issue14901] Python Windows FAQ is Very Outdated

2012-12-16 Thread Brian Curtin
Brian Curtin added the comment: Looks alright so far. I'm working on reviewing and applying it. -- assignee: docs@python -> brian.curtin ___ Python tracker <http://bugs.python.org

[issue14901] Python Windows FAQ is Very Outdated

2012-12-16 Thread Brian Curtin
Brian Curtin added the comment: Thanks for the patch. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue16719] Get rid of WindowsError. Use OSError instead

2012-12-18 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> brian.curtin components: +Windows nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue16719> ___ _

[issue13863] import.c sometimes generates incorrect timestamps on Windows + NTFS

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Latest patch looks ok to me and the tests pass. -- ___ Python tracker <http://bugs.python.org/issue13863> ___ ___ Python-bug

[issue14470] Remove using of w9xopen in subprocess module

2012-12-23 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue14470> ___ ___ Python-bugs-list

[issue14420] winreg SetValueEx DWord type incompatible with value argument

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Here is a patch for the first part (SetValueEx). -- keywords: +needs review, patch stage: needs patch -> patch review Added file: http://bugs.python.org/file28412/issue14420_part1.diff ___ Python tracker &l

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-23 Thread Brian Curtin
New submission from Brian Curtin: Making this its own issue from msg156935 on #14420: "Likewise, the winreg.QueryValueEx method returns a signed 32 bit value, instead of a 32 bit unsigned value." -- assignee: brian.curtin components: Extension Modules, Windows messages: 1

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Marking this dependent on #14420 because we can't reliably test QueryValueEx's unsigned value without being able to SetValueEx an unsigned value. -- dependencies: +winreg SetValueEx DWord type incompatible with valu

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Here's a patch. It depends on the patch from #14420 being applied in some way (I cloned from a branch which included it). -- keywords: +needs review, patch stage: needs patch -> patch review Added file: http://bugs.python.org/file28413/issue16

[issue10919] Environment variables are not expanded in _winreg when using REG_EXPAND_SZ.

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Yep. The documentation you linked says "A null-terminated string that contains unexpanded references to environment variables (for example, "%PATH%"). It will be a Unicode or ANSI string depending on whether you use the Unicode or ANSI functions

[issue13384] Unnecessary __future__ import in random module

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: This went over a year without a request to undo it, and we've since made several releases that includes it, so I'm closing this. Please re-open if it does need to be reverted. -- status: open -> closed _

[issue13000] unhandled exception at install

2012-12-23 Thread Brian Curtin
Brian Curtin added the comment: Unassigning myself. Jorge - are you still able to reproduce this, and if so, are you able to capture the log as mentioned by Martin? -- assignee: brian.curtin -> ___ Python tracker <http://bugs.python.org/issu

[issue16769] Remove some old Visual Studio versions from PC/ directory

2012-12-24 Thread Brian Curtin
New submission from Brian Curtin: While fixing #14470 to remove w9xpopen support, removing it from old Visual Studio projects came up. 1. I can't imagine anyone is attempting to use most of these. 2. Since we don't backport build changes to these older versions, some of them are v

[issue16769] Remove some old Visual Studio versions from PC/ directory

2012-12-24 Thread Brian Curtin
Brian Curtin added the comment: Definitely keeping PC/VS9.0 as it's still fairly common and VS2008 is still used by us for 2.7. I would like to remove PC/VS8.0 but if anyone speaks towards keeping it then I think it's fine. -- nosy: +

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-24 Thread Brian Curtin
Brian Curtin added the comment: Here's a patch that fills st_dev, and while we're at it st_rdev (which is the same value). I've moved the implementation of samefile/sameopenfile/samestat from Lib/posixpath.py over to Lib/genericpath.py and then removed the implementation fro

[issue13000] unhandled exception at install

2012-12-24 Thread Brian Curtin
Changes by Brian Curtin : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue13000> ___ ___ Python-bugs-list mailing list Unsubscri

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-24 Thread Brian Curtin
Brian Curtin added the comment: Why do you think that? I don't have a mac so I can't test it. -- ___ Python tracker <http://bugs.python.org/issue11939> ___ __

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-24 Thread Brian Curtin
Brian Curtin added the comment: Here is an updated patch addressing the sameopenfile that remained in Lib/ntpath.py, thanks to Sehriy's comment on the review. -- Added file: http://bugs.python.org/file28429/issue11939_v2.diff ___ Python tr

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-24 Thread Brian Curtin
Brian Curtin added the comment: Docs and the __all__ changes in V3 patch. -- Added file: http://bugs.python.org/file28430/issue11939_v3.diff ___ Python tracker <http://bugs.python.org/issue11

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-26 Thread Brian Curtin
Brian Curtin added the comment: Thanks for the reviews. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue10646] ntpath.samefile doesn't work for hard links

2012-12-26 Thread Brian Curtin
Brian Curtin added the comment: This was fixed as a result of #11939, and I've refactored the tests to add coverage of hard links in 9e980454b85e. This was originally a bug report but it requires a 3.4 feature so it can't be fixed in 3.2 where it originally appeared. --

[issue16788] Add samestat to Lib/ntpath.py __all__

2012-12-26 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: brian.curtin components: Library (Lib), Windows nosy: brian.curtin priority: normal severity: normal stage: needs patch status: open title: Add samestat to Lib/ntpath.py __all__ type: behavior versions: Python 3.4

[issue16788] Add samestat to Lib/ntpath.py __all__

2012-12-26 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2012-12-26 Thread Brian Curtin
Brian Curtin added the comment: Separate issue. Fixed in #16788. -- ___ Python tracker <http://bugs.python.org/issue11939> ___ ___ Python-bugs-list mailin

[issue14420] winreg SetValueEx DWord type incompatible with value argument

2012-12-27 Thread Brian Curtin
Brian Curtin added the comment: This is fixed on 3.2 through 3.4. On 2.7 we get a ValueError trying to do the same thing so I'll create a separate issue for that since it involves fixing more than just the change in Py2Reg. -- resolution: -> fixed stage: patch review ->

[issue14420] winreg SetValueEx DWord type incompatible with value argument

2012-12-27 Thread Brian Curtin
Brian Curtin added the comment: Never mind msg178303. The fix was roughly the same and in the same area, so now we're covered on 2.7 as well. -- ___ Python tracker <http://bugs.python.org/is

[issue16759] winreg.QueryValueEx returns signed 32bit value instead of unsigned

2012-12-27 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.or

[issue2405] Drop w9xpopen and all dependencies

2012-12-30 Thread Brian Curtin
Brian Curtin added the comment: This was fixed in #14470. -- nosy: +brian.curtin resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Remove using of w9xopen in subprocess module ___ Python tr

[issue7320] Unable to load external modules on build slave with debug python

2012-12-30 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> out of date stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker <http://bugs.pytho

[issue10657] os.lstat/os.stat/os.fstat don't set st_dev (st_rdev) on Windows

2012-12-31 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Implement stat.st_dev and os.path.samefile on windows ___ Python tracker <http://bugs.python

[issue11939] Implement stat.st_dev and os.path.samefile on windows

2013-01-01 Thread Brian Curtin
Brian Curtin added the comment: Backed out the changeset. If you have a solution, feel free to fix it. -- ___ Python tracker <http://bugs.python.org/issue11

[issue16841] Set st_dev on Windows as unsigned long

2013-01-02 Thread Brian Curtin
Brian Curtin added the comment: Looks good. -- assignee: -> serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue16841> ___ ___ Python-bugs-lis

[issue12018] No tests for ntpath.samefile, ntpath.sameopenfile

2013-01-04 Thread Brian Curtin
Brian Curtin added the comment: That's true of the default branch due to some changes I recently made in the implementation of the functions, but we should probably put tests into 3.2/3.3. -- ___ Python tracker <http://bugs.python.org/is

[issue444582] Finding programs in PATH, adding shutil.which

2013-01-13 Thread Brian Curtin
Brian Curtin added the comment: Please open a separate issue. -- ___ Python tracker <http://bugs.python.org/issue444582> ___ ___ Python-bugs-list mailin

[issue15359] Sockets support for CAN_BCM

2013-01-15 Thread Brian Thorne
Brian Thorne added the comment: I've added a single BCM test. Any feedback on it would be good and then I'll add more complex ones. Should the documentation be updated in this patch as well? -- Added file: http://bugs.python.org/file28747/

[issue16981] ImportError hides real error when there too many open files during an import

2013-01-16 Thread Brian Sutherland
New submission from Brian Sutherland: When running Python inside PostgreSQL using plpython on OSX 10.7.5 I started coming across very strange and apparently random ImportErrors. For example, failing to find the stat module while importing site: Traceback (most recent call last

[issue15359] Sockets support for CAN_BCM

2013-01-16 Thread Brian Thorne
Brian Thorne added the comment: Thanks for the review Charles-François. I can't make your suggested bcm_msg_fmt work - it was deadlocking on my machine! -- Added file: http://bugs.python.org/file28756/bcm3.patch ___ Python tracker

[issue17001] Make uuid.UUID use functools.total_ordering

2013-01-19 Thread Brian Curtin
Brian Curtin added the comment: Can you provide test cases for this code? -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue17001> ___ ___

[issue16273] f.tell() returning negative number on Windows build

2013-01-19 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue16273> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17004] Expand zipimport to include other compression methods

2013-01-20 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Library (Lib) nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue17004> ___ ___ Python-bugs-list mailin

[issue15359] Sockets support for CAN_BCM

2013-01-22 Thread Brian Thorne
Brian Thorne added the comment: I've added (some) docs and added checking of the BCM constants to the test_socket module. I would guess that checking each broadcast manager function provided by the kernel isn't required? -- Added file: http://bugs.python.org/file28805/

[issue16769] Remove some old Visual Studio versions from PC/ directory

2013-01-25 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: This change can only happen on 3.4. -- versions: +Python 3.4 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue17

[issue17056] Support Visual Studio 2012

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: This is a feature request and new features are only being added on the 3.x line. The next feature release will be 3.4. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: You need to compile rhodecode with VS2008 to match Python 2.7. You'd have this same problem mixing runtimes regardless of rhodecode or Python being involved. -- nosy: +brian.curtin ___ Python tracker

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: A more correct way to say my last message is that you'd need to have Python and rhodecode linked to the same runtime, by compiling with the same Visual Studio. If you require VS2012 with Python 2.7, you'll need to port Python on your own and then

[issue17047] Fix double double words words

2013-01-27 Thread Brian Curtin
Changes by Brian Curtin : -- priority: normal -> low ___ Python tracker <http://bugs.python.org/issue17047> ___ ___ Python-bugs-list mailing list Unsubscri

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: Passing CRT objects (like a file handle) across runtime boundaries results in unexpected behavior, which is probably what's happening here. In the past people have mentioned porting 2.7 to VS2010 which would encounter the same issues you're seeing he

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: Maybe you should email python-dev. -- ___ Python tracker <http://bugs.python.org/issue17058> ___ ___ Python-bugs-list mailin

[issue17065] Fix sporadic buildbot failures for test_winreg

2013-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> brian.curtin ___ Python tracker <http://bugs.python.org/issue17065> ___ ___ Python-bugs-list mailing list Unsubscri

[issue17051] Memory leak in os.path.isdir under Windows

2013-01-28 Thread Brian Curtin
Brian Curtin added the comment: Robert, thanks a lot for this fix and your contributor agreement. We're currently working on making it easier to submit the contributor agreement so you won't have to print it out and mail/fax/scan it...even though you already did it and you'

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

2013-01-30 Thread Brian Curtin
Brian Curtin added the comment: I can't comment on what the change should be or how it should be done as I don't do anything with mimetypes, but nothing about how the patch was written jumps out at me for being incorrect (except I would not include ishimoto's name changes)

[issue13169] Regular expressions with 0 to 65536 repetitions raises OverflowError

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

[issue16997] subtests

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

[issue16743] mmap on Windows can mishandle files larger than sys.maxsize

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

[issue19038] Fix sort order in Misc/ACKS.

2013-09-17 Thread Brian Curtin
Brian Curtin added the comment: I don't believe we want to do those things. Changes should be in a diff file and limited to the minimum amount of required changes to fix your sort ordering bug - not adding people or changing the spelling of people's names. -- nosy: +br

[issue19089] Windows: Make Ctrl-D exit key combination cross-platform

2013-09-25 Thread Brian Curtin
Brian Curtin added the comment: I'm unable to find the previous issue, but you asked for this in the past. Ctrl-Z and Ctrl-D simply have different meanings on the different platforms, outside of what Python does. We already can't make Ctrl-Z on Windows do what it does on Linux, and

[issue19246] freeing then reallocating lots of memory fails under Windows

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

[issue7200] multiprocessing deadlock on Mac OS X when queue collected before process terminates

2013-10-18 Thread Brian Quinlan
Brian Quinlan added the comment: OK, working as intended. -- resolution: -> invalid ___ Python tracker <http://bugs.python.org/issue7200> ___ ___ Python-

[issue10918] **kwargs unnecessarily restricted in concurrent.futures 'submit' API

2013-10-18 Thread Brian Quinlan
Brian Quinlan added the comment: I think that we are happy to not fix this. -- resolution: accepted -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue11161] futures.ProcessPoolExecutor hangs

2013-10-25 Thread Brian Quinlan
Changes by Brian Quinlan : -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/issue11161> ___ ___ Python-bugs-list

[issue13785] Make concurrent.futures.Future state public

2013-10-25 Thread Brian Quinlan
Brian Quinlan added the comment: Any progress on this or can I close the bug? -- ___ Python tracker <http://bugs.python.org/issue13785> ___ ___ Python-bugs-list m

[issue18699] What is Future.running() for in PEP 3148 / concurrent.futures.Future?

2013-10-25 Thread Brian Quinlan
Brian Quinlan added the comment: The only thing that I've used .running() for is for UI reasons. But it is easier to just iterative over your futures and call a method than to install a callback and handle the state yourself. -- nosy: +bqu

[issue17874] ProcessPoolExecutor in interactive shell doesn't work in Windows

2013-10-25 Thread Brian Quinlan
Brian Quinlan added the comment: Take a look at http://bugs.python.org/issue11161 and its fix. Do you think that just saying that ProcessPoolExecutor will not work from the interactive shell is sufficient? -- nosy: +bquinlan ___ Python tracker

[issue19401] Segmentation fault with float arithmatics on OS X Mavericks

2013-10-25 Thread Brian Zhou
New submission from Brian Zhou: $ uname -a Darwin foobar 13.0.0 Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64 x86_64 $ python Python 2.7.5 (v2.7.5:ab05e7dd2788, May 13 2013, 13:18:45) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin Type

[issue17883] Fix buildbot testing of Tkinter

2013-11-03 Thread Brian Curtin
Brian Curtin added the comment: The changes look fine to me. -- assignee: terry.reedy -> zach.ware ___ Python tracker <http://bugs.python.org/issue17883> ___ _

[issue19440] Clean up test_capi

2013-11-03 Thread Brian Curtin
Brian Curtin added the comment: Your patch for 3.3 won't fly: subTest is new for 3.4. -- ___ Python tracker <http://bugs.python.org/issue19440> ___ ___ Pytho

[issue19391] Fix PCbuild/readme.txt in 2.7 and 3.3

2013-11-03 Thread Brian Curtin
Brian Curtin added the comment: Both patches look fine to me. -- ___ Python tracker <http://bugs.python.org/issue19391> ___ ___ Python-bugs-list mailing list Unsub

[issue13276] bdist_wininst-created installer does not run the postinstallation script when uninstalling

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

[issue19792] pathlib does not support symlink in Windows XP

2013-11-26 Thread Brian Curtin
Brian Curtin added the comment: If users want to do that hack to get symlinks on XP, they should probably just manage doing so on their own. It's not something we'd take care of installing and running via our installer, so I don't think pathlib should be changed

[issue19792] pathlib does not support symlink in Windows XP

2013-11-27 Thread Brian Curtin
Brian Curtin added the comment: If a platform does not actually support symlinks, and XP does not actually support symlinks for any usual definition of an operating system supporting a feature, then I'm not sure why pathlib is doing something wrong to make it work more reasonably in that

[issue19877] test_resolve_dot of test_pathlib.py fails on Windows Vista

2013-12-03 Thread Brian Curtin
Brian Curtin added the comment: My build slave ran as admin in order to make sure symlinks were covered, but I don't have the hardware anymore. I'll see if I can get another machine up and running. -- nosy: +brian.curtin ___ Python trac

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

2013-12-03 Thread Brian Curtin
Brian Curtin added the comment: Time between comments will never be a factor in closing bugs. If this isn't an issue with 2.7, then we can close it. I'm not near a Windows machine this week as I'm traveling, so I can't chec

[issue12378] smtplib.SMTP_SSL leaks socket connections on SSL error

2014-06-23 Thread brian morrow
brian morrow added the comment: Not sure if this is still relevant, but I've supplied a python2.7 patch for this issue. All regression tests still pass and the underlying socket connection is closed: bmorrow@xorange:~/cpython$ ./python -m smtpd -n -c DebuggingServer localhost

[issue19996] httplib infinite read on invalid header

2014-06-27 Thread brian yardy
brian yardy added the comment: import http.client h = http.client.HTTPConnection('http://www.einstantloan.co.uk/') h.request('GET', '/', headers={'Accept-Encoding': 'gzip'}) r = h.getresponse() hdrs = r.getheaders() bod

[issue17399] test_multiprocessing hang on Windows, non-sockets

2014-06-27 Thread brian yardy
brian yardy added the comment: All 4 or 5 times I tried on 3.2, yes. In Command Prompt, 3.2 gave same error as before, 3.3 a different error. multi-test.txt has full tracebacks.'http://www.einstantloan.co.uk/' -- nosy: +brianyardy ___ Pyth

[issue19841] ConfigParser PEP issues

2014-06-27 Thread brian yardy
brian yardy added the comment: Do you mean PEP 8 violations? These aren’t usually enough to cause a change.'http://www.einstantloan.co.uk/' -- nosy: +brianyardy ___ Python tracker <http://bugs.python.o

[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:

[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:

[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:

[issue20858] Enhancements/fixes to pure-python datetime module

2014-07-07 Thread Brian Kearns
Brian Kearns added the comment: Updated patch, now it also caches the result of __hash__ like the C accelerator. -- Added file: http://bugs.python.org/file35894/datetime-py35.patch ___ Python tracker <http://bugs.python.org/issue20

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

[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:

<    10   11   12   13   14   15   16   17   18   19   >