[issue2846] Gzip cannot handle zero-padded output + patch

2010-01-12 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15851/issue2846.diff ___ Python tracker <http://bugs.python.org/issue2846> ___ ___ Python-bugs-list m

[issue2846] Gzip cannot handle zero-padded output + patch

2010-01-12 Thread Brian Curtin
Brian Curtin added the comment: Updated patch with some documentation -- Added file: http://bugs.python.org/file15852/issue2846.diff ___ Python tracker <http://bugs.python.org/issue2

[issue2758] arg 2 of PyErr_SetFromErrnoWithFilename should be const

2010-01-12 Thread Brian Curtin
Brian Curtin added the comment: This is already fixed in trunk and the various 3.x branches. -- nosy: +brian.curtin priority: -> normal resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tr

[issue2846] Gzip cannot handle zero-padded output + patch

2010-01-13 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15852/issue2846.diff ___ Python tracker <http://bugs.python.org/issue2846> ___ ___ Python-bugs-list m

[issue2846] Gzip cannot handle zero-padded output + patch

2010-01-13 Thread Brian Curtin
Brian Curtin added the comment: Thanks for taking a look! Patch updated with that try/except removed. -- Added file: http://bugs.python.org/file15856/issue2846.diff ___ Python tracker <http://bugs.python.org/issue2

[issue7662] time.utcoffset()

2010-01-13 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue7662> ___ ___ Python-bugs-list

[issue2796] Build issues in DragonFly BSD

2010-01-13 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> patch review ___ Python tracker <http://bugs.python.org/issue2796> ___ ___ Python-bugs-list

[issue3035] Removing apparently unwanted functions from Tkinter

2010-01-13 Thread Brian Curtin
Brian Curtin added the comment: If this stuff needs to be removed it should probably go through the deprecation process. -- keywords: +needs review nosy: +brian.curtin priority: -> low stage: -> patch review type: -> behavior versions: +Python 3.2 -P

[issue7699] strptime, strftime documentation

2010-01-13 Thread Brian Curtin
Brian Curtin added the comment: Seems reasonable. Additionally, the block about time.strftime not utilizing date related formats (line 1514 in the patched file) can be removed. It has worked for a long time (forever?). >>> time.strftime("%Y-%m-%d %H:%M:%S", time.localtim

[issue7695] missing termios constants

2010-01-13 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> needs patch versions: +Python 2.7, Python 3.2 -Python 2.5, Python 2.6 ___ Python tracker <http://bugs.python.org/

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

2010-01-14 Thread Brian Curtin
Brian Curtin added the comment: This has come up recently and Martin's approach seems to work. I updated his patch for trunk, and test_popen passes when I run it with and without a space in the path. Russ Gibson's suggestion was already applied to test_popen, so the only code ch

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

2010-01-14 Thread Brian Curtin
Brian Curtin added the comment: Here is a py3k version of the previous patch. os.popen is implemented using subprocess.Popen, so the quoting change was made there. -- Added file: http://bugs.python.org/file15886/issue1559298_py3k.diff ___ Python

[issue7301] Add environment variable $PYTHONWARNINGS

2010-01-14 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15324/issue7301_v2.patch ___ Python tracker <http://bugs.python.org/issue7301> ___ ___ Python-bug

[issue7301] Add environment variable $PYTHONWARNINGS

2010-01-14 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15322/issue7301.patch ___ Python tracker <http://bugs.python.org/issue7301> ___ ___ Python-bugs-list m

[issue7301] Add environment variable $PYTHONWARNINGS

2010-01-14 Thread Brian Curtin
Brian Curtin added the comment: fixed a tab/space issue -- Added file: http://bugs.python.org/file15889/issue7301.diff ___ Python tracker <http://bugs.python.org/issue7

[issue3426] os.path.abspath with unicode argument should call os.getcwdu

2010-01-14 Thread Brian Curtin
Brian Curtin added the comment: assertStr and assertUnicode don't exist in test_ntpath so the tests fail on Windows. I copied/pasted the functions over from test_posixpath just to see and test_ntpath passes. Other than that, it looks good

[issue5825] Patch to add "remove" method to tempfile.NamedTemporaryFile

2010-01-15 Thread Brian Curtin
Brian Curtin added the comment: You should use assertFalse in your test, as failIf is deprecated starting in 2.7. -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue5

[issue7705] libpython2.6.so is not linked correctly on FreeBSD when threads are enabled

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> patch review ___ Python tracker <http://bugs.python.org/issue7705> ___ __

[issue1670765] email.Generator: no header wrapping for multipart/signed

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review stage: test needed -> patch review versions: +Python 3.1 -Python 3.0 ___ Python tracker <http://bugs.python.org/issue1

[issue1670765] email.Generator: no header wrapping for multipart/signed

2010-01-15 Thread Brian Curtin
Brian Curtin added the comment: Martin, can you provide a true unit test? Lib\email\test\test_email.py has many examples, and something like this would fit in there. -- nosy: +brian.curtin stage: patch review -> test needed ___ Python trac

[issue6963] Add worker process lifetime to multiprocessing.Pool - patch included

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> patch review versions: +Python 3.2 -Python 3.1 ___ Python tracker <http://bugs.python.org/

[issue2927] expose html.parser.unescape

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> patch review versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue7639] bdist_msi fails on files with long names

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> test needed type: crash -> behavior ___ Python tracker <http://bugs.python.o

[issue1722] Undocumented urllib functions

2010-01-15 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +easy stage: -> needs patch type: -> feature request versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker <http://bugs.python.org/

[issue5618] PyMemberDef type T_UBYTE incorrectly documtented

2009-03-30 Thread Brian Curtin
New submission from Brian Curtin : One of the available options for the type field in the PyMemberDef structure is incorrectly listed as T_UNBYTE. T_UBYTE is the correct type. See http://docs.python.org/c-api/structures.html#PyMemberDef -- assignee: georg.brandl components

[issue5618] PyMemberDef type T_UBYTE incorrectly documtented

2009-03-30 Thread Brian Curtin
Brian Curtin added the comment: Adding 3x patch -- Added file: http://bugs.python.org/file13505/structures_3x.patch ___ Python tracker <http://bugs.python.org/issue5

[issue8763] py3K bdist_msi wrongly installs itself in ALL python versions

2010-05-19 Thread Brian Curtin
Brian Curtin added the comment: Are you allowing it to install into all Python versions? I have a package here at work that I make bdist_msi installers for and most of my machines have 2.6 and 3.1 on them. During the install I only choose to install it for 3.1 when the extensions are

[issue8777] Add threading.Barrier

2010-05-20 Thread Brian Curtin
Changes by Brian Curtin : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue8777> ___ ___ Python-bugs-list mailing list Unsub

[issue8780] py3k: child process don't inherit stdout / stdout on Windows

2010-05-21 Thread Brian Curtin
Brian Curtin added the comment: Looks fine to me. The first line of the test comment has "if" instead of "is" but you could fix that on checkin. -- assignee: brian.curtin -> haypo ___ Python tracker <http:/

[issue2810] _winreg.EnumValue sometimes raises WindowsError ("More data is available")

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: Committed to trunk in r81517 and release26-maint in r81540. I'll cover the 3.x stuff today and then close it out. -- assignee: stutzbach -> brian.curtin resolution: -> fixed stage: patch review -> comm

[issue2810] _winreg.EnumValue sometimes raises WindowsError ("More data is available")

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: test_dynamic_key fails on py3k, but not because of these changes. RegQueryValueExW doesn't appear to work with NULL for the second parameter (valueName), although it is documented to and the ANSI version on 2.x works fine. The empty string is also docum

[issue7879] Too narrow platform check in test_datetime

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: sys.platform will be "win32" for both 32 and 64-bit Windows. As for Cygwin, os.name is "posix" there, and sys.platform is "cygwin", so it should be unaffected. The patch looks fine to me, and we do typically use sys.platform more

[issue8825] int("0",0) throws exception

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: Works fine on 2.6 and 3.1 on Windows. -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue8825> ___ ___ Pytho

[issue8825] int("0",0) throws exception

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: That's an IronPython bug, and I see the same thing as you when I run on IP 2.6. You could submit a bug report to them here: http://ironpython.codeplex.com/workitem/list/basic -- ___ Python tracker

[issue2810] _winreg.EnumValue sometimes raises WindowsError ("More data is available")

2010-05-26 Thread Brian Curtin
Brian Curtin added the comment: Committed to py3k in r81547 and release31-maint in r81546. Thanks for the patch! -- status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue8825] int("0",0) throws exception

2010-05-26 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +dino.viehland ___ Python tracker <http://bugs.python.org/issue8825> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8405] Improve test_os._kill (failing on slow machines)

2010-05-27 Thread Brian Curtin
Brian Curtin added the comment: I just noticed the other day that a buildbot failed because of this issue. Attached is a patch which removes the unconditional 0.5 sleep, and increases the loop to run 100 times. It should cover the worst case of a super slow buildbot, but is still typically

[issue8579] Add missing tests for FlushKey, LoadKey, and SaveKey in winreg

2010-05-27 Thread Brian Curtin
Brian Curtin added the comment: LoadKey and SaveKey require special privileges which need to manually acquired, likely via ctypes. #1578269 has some code which does this for os.symlink privileges and it's about to go into py3k, so I'll try to piggyback o

[issue7171] Add inet_ntop and inet_pton support for Windows

2010-05-27 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Windows versions: -Python 2.7 ___ Python tracker <http://bugs.python.org/issue7171> ___ ___ Python-bugs-list mailin

[issue8842] sqlite3 library outdated in Windows builds

2010-05-28 Thread Brian Curtin
Brian Curtin added the comment: SQLite was upgraded to 3.6.21 about 4 months ago for 2.7 and 3.2. -- nosy: +brian.curtin resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8405] Improve test_os._kill (failing on slow machines)

2010-05-28 Thread Brian Curtin
Brian Curtin added the comment: Committed to trunk in r81584 and py3k in r81585. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue8849] python.exe problem with cvxopt

2010-05-29 Thread Brian Curtin
Brian Curtin added the comment: Rather than attaching a Word document, can you just enter your information here? -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue8

[issue8618] test_winsound fails when no playback devices configured

2010-06-01 Thread Brian Curtin
Brian Curtin added the comment: Committed in r81640 through r81643 -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue8879] Implement os.link on Windows

2010-06-02 Thread Brian Curtin
New submission from Brian Curtin : Add os.link support for Windows (mostly a reminder to myself to finish the patch I have) -- assignee: brian.curtin components: Extension Modules, Windows messages: 106908 nosy: brian.curtin priority: normal severity: normal stage: needs patch status

[issue8905] difflib: support input generators

2010-06-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue8905> ___ ___ Python-bugs-list mai

[issue8519] doc: termios and ioctl reference links

2010-06-06 Thread Brian Curtin
Changes by Brian Curtin : -- title: [patch] doc: termios and ioctl reference links -> doc: termios and ioctl reference links ___ Python tracker <http://bugs.python.org/iss

[issue8904] quick example how to fix docs

2010-06-07 Thread Brian Curtin
Brian Curtin added the comment: I think what you are suggesting is outside of the scope of that document -- it appears that the page intends to be quick and strictly focused on reporting bugs, not fixing them. -- nosy: +brian.curtin status: open -> pend

[issue7989] Transition time/datetime C modules to Python

2010-06-07 Thread Brian Curtin
Brian Curtin added the comment: It seems like this might not be worth it or a good idea, and I have no strong feeling for this being done. Feel free to close/reject this one. -- ___ Python tracker <http://bugs.python.org/issue7

[issue8936] webbrowser regression on windows

2010-06-07 Thread Brian Curtin
Brian Curtin added the comment: See also #8232 -- nosy: +brian.curtin stage: -> unit test needed type: -> behavior versions: -Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue8936] webbrowser regression on windows

2010-06-07 Thread Brian Curtin
Brian Curtin added the comment: Also, since you stated that this is a regression -- what was the last version you saw this work in? -- ___ Python tracker <http://bugs.python.org/issue8

[issue8944] test_winreg.test_reflection_functions fails on Windows Server 2003

2010-06-08 Thread Brian Curtin
New submission from Brian Curtin : The key/subkey used in this test causes a failure when run on Windows Server 2003 x64. -- assignee: brian.curtin components: Tests, Windows messages: 107337 nosy: brian.curtin priority: normal severity: normal stage: needs patch status: open title

[issue8946] PyBuffer_Release signature in 3.1 documentation is incorrect

2010-06-08 Thread Brian Curtin
Brian Curtin added the comment: Fixed in r81851 (py3k) and r81852 (release31-maint). Thanks! -- assignee: d...@python -> brian.curtin nosy: +brian.curtin resolution: -> fixed stage: -> committed/rejected status: open -> closed versions:

[issue8953] Syntax error in http://docs.python.org/library/decimal.html#recipes

2010-06-09 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> invalid ___ Python tracker <http://bugs.python.org/issue8953> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8954] wininst regression: errors when building on linux

2010-06-09 Thread Brian Curtin
Brian Curtin added the comment: Where was that reported? -- nosy: +brian.curtin stage: -> unit test needed type: -> behavior ___ Python tracker <http://bugs.python.org/

[issue8956] Incorrect ValueError message for subprocess.Popen.send_signal() on Windows

2010-06-09 Thread Brian Curtin
Brian Curtin added the comment: Good catch, I forgot to update that message when adding the other signal support. Would you rather see something more generic like "Unsupported signal" rather than start listing all of the signals? Another alternative is to allow any signal through

[issue8961] compile Python-2.7rc1 on AIX 5.3 with xlc_r

2010-06-10 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +srid ___ Python tracker <http://bugs.python.org/issue8961> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

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

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

[issue9007] CGIHTTPServer supports only Python CGI scripts

2010-06-16 Thread Brian Curtin
Changes by Brian Curtin : -- priority: normal -> low stage: -> needs patch type: -> behavior versions: -Python 3.3 ___ Python tracker <http://bugs.python.o

[issue7370] BaseHTTPServer reinventing rfc822 date formatting

2010-06-16 Thread Brian Curtin
Changes by Brian Curtin : -- title: patch: BaseHTTPServer reinventing rfc822 date formatting -> BaseHTTPServer reinventing rfc822 date formatting ___ Python tracker <http://bugs.python.org/iss

[issue9017] doctest option flag to enable/disable some chunk of doctests?

2010-06-17 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Library (Lib) -Tests stage: -> unit test needed title: What do you think about an Option Flags to enable/disable some chunk of doctest file ? -> doctest option flag to enable/disable some chunk of doctests? type: -> feature request

[issue9044] [optparse] confusion over an option and its value without any space in between

2010-06-21 Thread Brian Curtin
Brian Curtin added the comment: I wouldn't say that is confusing -- it is a common usage to have an option immediately followed by it's value (see gcc output after running make, -Wall, etc). -- nosy: +brian.curtin versions: +Python 3.2 -

[issue9041] raised exception is misleading

2010-06-21 Thread Brian Curtin
Brian Curtin added the comment: "they only get security and documentation fixes" 2.6 does receive bug fixes. 2.5 is the version in security fix only mode. -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.

[issue5672] Implement a way to change the python process name

2010-06-24 Thread Brian Curtin
Brian Curtin added the comment: If it has matured, has shown to be as a "best of breed" library of it's type, and has gone through the PEP process, it could make it. That takes quite a bit of time and isn't likely to occur within the next few years (3.3 at the earliest

[issue7566] Add ntpath.sameopenfile support for Windows

2010-06-27 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> brian.curtin nosy: +brian.curtin stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue7566> ___ __

[issue9097] os.chdir(path) to return current dir

2010-06-28 Thread Brian Curtin
Brian Curtin added the comment: -0 for having os.chdir be responsible for the previous directory. I'm not too much against this, but it's very easily done in it's current state. -1 for making os.chdir into a context manager which reverts itself upon exit. There are a

[issue9098] MSYS build fails with `S_IXGRP' undeclared

2010-06-28 Thread Brian Curtin
Brian Curtin added the comment: > I thought Python ran everywhere. That's what the documentation says. Python does *run* on Windows (when compiled with Visual Studio or gcc via Cygwin), it just might not be setup to build with the MSYS compiler. -- nosy: +bria

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-06-29 Thread Brian Curtin
New submission from Brian Curtin : Debug and Release builds of py3k both throw up a Visual Studio debugger prompt when running this test on Windows. I don't have much time at the moment to investigate, but I find it odd that this isn't occurring on the two Windows py3k buildbots.

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-06-29 Thread Brian Curtin
Brian Curtin added the comment: I should also note that this doesn't appear to happen on release31-maint or trunk. -- ___ Python tracker <http://bugs.python.org/i

[issue9149] colorsys.py function rgb_to_hls

2010-07-03 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Library (Lib) stage: -> unit test needed type: crash -> behavior versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue7962] Demo and Tools need to be tested and pruned

2010-07-04 Thread Brian Curtin
Brian Curtin added the comment: I should note here that I fixed Demo/md5test/md5driver.py in r82351 (py3k) and r82352 (release31-maint). -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue7

[issue8905] difflib should accept arbitrary line iterators

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

[issue7582] Use ISO timestamp in diff.py

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

[issue2636] Regexp 2.7 (modifications to current re 2.2.2)

2010-07-06 Thread Brian Curtin
Brian Curtin added the comment: Before anything else is done with it, it should probably be announced in some way. I'm not sure if anyone has opened any of these zip files, reviewed anything, ran anything, or if anyone even knows this whole thing has been going on. --

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

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

[issue9202] Update platform.win32_ver() to account for change to #8413

2010-07-08 Thread Brian Curtin
New submission from Brian Curtin : The change to #8413 broke the use of sys.getwindowsversion() in platform.platform() calls on Windows, which subsequently breaks all runs of regrtest (e.g. buildbots) since it outputs platform info at the start. Now that structseq subclasses tuple, every

[issue9202] Update platform.win32_ver() to account for change to #8413

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: The following little patch could do the trick. --- platform.py (revision 82643) +++ platform.py (working copy) @@ -606,7 +606,9 @@ # Find out the registry key and some general version infos winver = GetVersionEx() -maj,min,buildno,plat,csd

[issue7766] sys.getwindowsversion as PyStructSequence

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: The previously mentioned comments about backwards incompatibility with the number of items in the sequence are now a problem, since structseq now inherits from tuple. It seems that n_in_sequence gets ignored and we have a 9 item tuple. -- status

[issue8413] String interpolation doesn't work with sys.version_info

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: A side effect of this change is that it kills the ability to have a PyStructSequence which has a smaller visible size than the total number of items. For example, sys.getwindowsversion used to have 5 items in the sequence and 4 items accessible by name only

[issue3701] test_ntpath.test_relpath fails when launched from a different Windows drive

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: This is only an issue on release31-maint. py3k and release27-maint passed this test when I ran from H:\ with my source on C:\. -- nosy: +brian.curtin stage: -> needs patch versions: -Python 2.7, Python

[issue9202] Update platform.win32_ver() to account for change to #8413

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: Agreed. This started out as a knee-jerk reaction to regrtest not working, but the problem is deeper. Closing this. The structseq stuff is being dealt with elsewhere. -- resolution: -> rejected stage: needs patch -> committed/rejected status

[issue1578269] Add os.symlink() and os.path.islink() support for Windows

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: Committed in r82659. I'm leaving this open until a few other issues are fleshed out. 1. Document privilege escalation and/or expose some method to do so. 2. Test execution, e.g., buildbots Once I get a few more things off my plate I should be able to f

[issue7766] sys.getwindowsversion as PyStructSequence

2010-07-08 Thread Brian Curtin
Brian Curtin added the comment: Yep, setting this back to closed. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue7766> ___ ___ Py

[issue1723038] Curses Menu

2010-07-08 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Extension Modules -Library (Lib) versions: -Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/issue1723

[issue1723038] Curses Menu

2010-07-08 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> unit test needed type: -> feature request ___ Python tracker <http://bugs.python.org/issue1723038> ___ ___ Pyth

[issue1578269] Add os.symlink() and os.path.islink() support for Windows

2010-07-09 Thread Brian Curtin
Brian Curtin added the comment: Committed Jason's patch with Antoine's twist as r82743 after running on Arch Linux. Thanks for catching and looking into this stuff. -- ___ Python tracker <http://bugs.python.org

[issue1522400] irda socket support

2010-07-10 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Extension Modules -Library (Lib) ___ Python tracker <http://bugs.python.org/issue1522400> ___ ___ Python-bugs-list mailin

[issue6668] locale.py: can't parse sr...@latin locale

2010-07-11 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Unicode ___ Python tracker <http://bugs.python.org/issue6668> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7365] grp and pwd should treat uid and gid as unsigned

2010-07-11 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Extension Modules -Library (Lib) ___ Python tracker <http://bugs.python.org/issue7365> ___ ___ Python-bugs-list mailin

[issue5673] Add timeout option to subprocess.Popen

2010-07-14 Thread Brian Curtin
Brian Curtin added the comment: I'm looking into the TODO details right now, but the patch as-is didn't pass for me. The last line of test_communicate_timeout fails on Windows 7 with "pineapple\r\npear\r\n" not matching "pineapple\npear\n". Creating the Popen

[issue1410680] Add 'surgical editing' to ConfigParser

2010-07-16 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> merwok ___ Python tracker <http://bugs.python.org/issue1410680> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5673] Add timeout option to subprocess.Popen

2010-07-16 Thread Brian Curtin
Brian Curtin added the comment: The pattern you mention should probably be documented as an example, if that's how we intend for people to use it. Other than that, I've got nothing else here. -- assignee: -> rnk ___ Python t

[issue900092] hotshot.stats.load fails with AssertionError

2010-07-19 Thread Brian Curtin
Brian Curtin added the comment: I don't think this should have been closed just yet. If the issue still exists in 2.x, it could still be fixed in the remaining 2.6 release, or any of the future 2.7 releases. You are right that it won't apply to 3.x since hotshot is

[issue9262] IDLE: Use tabbed shell and edit windows

2010-07-20 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin ___ Python tracker <http://bugs.python.org/issue9262> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4832] idle filename extension

2010-07-20 Thread Brian Curtin
Brian Curtin added the comment: I would forget about slicing or using startswith. "win32" is the platform name for Python on Windows whether or not it's 64-bit (see PC/pyconfig.h), so I'd just check """sys.platform == 'w

[issue5673] Add timeout option to subprocess.Popen

2010-07-20 Thread Brian Curtin
Brian Curtin added the comment: You forgot "self." on at least lines 1042 and 1044 in Lib/subprocess.py -- multiple test failures occur on Windows 7 due to a NameError for the global stdout_thread not being defined. It seems "self." would also be needed on 1049 and 105

[issue9316] typos in zipimport docstrings

2010-07-20 Thread Brian Curtin
Brian Curtin added the comment: Thanks for the patch. Fixed in r83007 through r83010. -- assignee: -> brian.curtin components: +Documentation, Extension Modules nosy: +brian.curtin resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> be

[issue5673] Add timeout option to subprocess.Popen

2010-07-21 Thread Brian Curtin
Brian Curtin added the comment: Looks good to me. -- ___ Python tracker <http://bugs.python.org/issue5673> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9079] Make gettimeofday available in time module

2010-07-21 Thread Brian Curtin
Brian Curtin added the comment: issue9079a.diff doesn't compile on Windows - timeval isn't defined. You'd have to include Winsock2.h [0]. Adding something like the following within the HAVE_FTIME block would work... #ifdef MS_WINDOWS #include #endif I don't currently hav

[issue9079] Make gettimeofday available in time module

2010-07-21 Thread Brian Curtin
Brian Curtin added the comment: Here are the errors I get: Error 104 error C2037: left of 'tv_sec' specifies undefined struct/union 'timeval'c:\python-dev\py3k\Python\pytime.c 46 pythoncore Error 105 error C2037: left of 'tv_usec' sp

[issue9079] Make gettimeofday available in time module

2010-07-21 Thread Brian Curtin
Brian Curtin added the comment: I won't have time to review this, but I can say issue9079b.diff works fine on Windows. -- ___ Python tracker <http://bugs.python.org/i

<    8   9   10   11   12   13   14   >