[issue7756] Complete your registration to Python tracker -- key rt04e51ru5U1WqGum1kklK4ZYWEe1Mkf

2010-01-22 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> low resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.org/issue7756> ___

[issue7760] use_errno=True does not work

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

[issue7761] telnetlib Telnet.interact fails on Windows but not Linux

2010-01-23 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin priority: -> normal stage: -> test needed type: -> behavior ___ Python tracker <http://bugs.python.o

[issue7744] Allow site.addsitedir insert to beginning of sys.path

2010-01-23 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed status: open -> pending versions: +Python 2.7, Python 3.2 ___ Python tracker <http://bugs.python.o

[issue7766] sys.getwindowsversion as PyStructSequence

2010-01-23 Thread Brian Curtin
New submission from Brian Curtin : I always find myself wishing sys.getwindowsversion() utilized the named tuple concept, so here it is against trunk. sys.version_info was also changed in this manner for 2.7. Because it is a PyStructSeq/named tuple, it is still accessible like a regular old

[issue7766] sys.getwindowsversion as PyStructSequence

2010-01-23 Thread Brian Curtin
Brian Curtin added the comment: Good point about OSVERSIONINFOEX. I've actually wanted some of that info as well, and according to MSDN the minimum supported client to get that structure is Windows 2000 - same as OSVERSIONINFO. Attached is a patch updated with your comments plus the u

[issue7767] Add PyLong_AsLongLongAndOverflow

2010-01-23 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Interpreter Core -Extension Modules keywords: +needs review priority: -> normal stage: -> patch review versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/

[issue6651] Py3k's posixpath.relpath not compatible with ntpath.relpath

2010-01-23 Thread Brian Curtin
Brian Curtin added the comment: After thinking about this, I don't see a need for any change. Although it _looks_ like the relpath implementations aren't compatible based on their start default parameters, they do work the same. My code change isn't really necessary.

[issue3754] minimal cross-compilation support for configure

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

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin added the comment: Can you submit your patch as a unified diff -- it's not easy to tell where you made changes to that file. Can you also include tests showing how this is used, especially using register_function in both the old way and the new way you propose? Lib

[issue3871] cross and native build of python for mingw32 with distutils

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

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin added the comment: http://www.python.org/dev/workflow/ and http://python.org/dev/faq/ should help you get started. The workflow doc will let you know what the process is around here. The FAQ will tell you how to setup Subversion, how to make a diff, etc. With that said, I think

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2010-01-24 Thread Brian Curtin
Brian Curtin added the comment: Once you get a Subversion checkout of the source, have a look in Lib/test/test_xmlrpc.py for examples of how things are currently tested (using unittest). Once you get a feel for it, add new tests for what your changes do. The file you paste'd looks good

[issue7347] Add {Create|Delete}KeyEx to _winreg, doc and test updates

2010-01-24 Thread Brian Curtin
Brian Curtin added the comment: After looking into this again, the testing situations are much different than I had originally written. Some of the tests aren't really valid exercises. For one, the querying/enabling/disabling of reflection keys aren't good tests as they aren

[issue7773] platform._parse_release_file() can cause UnboundLocalError

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

[issue7776] httplib.py: ._tunnel() broken

2010-01-24 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin priority: -> normal stage: -> test needed versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/

[issue7777] Support needed for AF_RDS family

2010-01-25 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin priority: -> normal stage: -> needs patch ___ Python tracker <http://bugs.python.org/issue> ___ ___

[issue7765] 'unittest' documentation misprints

2010-01-25 Thread Brian Curtin
Brian Curtin added the comment: Another one-liner, stopTestRun -- nosy: +brian.curtin Added file: http://bugs.python.org/file16002/stopTestRun.diff ___ Python tracker <http://bugs.python.org/issue7

[issue4440] "sort" command doesn't work in pstats if run interactively

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

[issue7766] sys.getwindowsversion as PyStructSequence

2010-01-26 Thread Brian Curtin
Brian Curtin added the comment: Thanks a lot for taking a look at this, Eric and Marc-Andre. Apologies for the few mistakes in there, I jumped the gun and submitted that last patch before having run the full test suite again. Good catch on the missing #ifdef. I will also run this on Mac and

[issue7789] Issue using datetime with format()

2010-01-26 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Library (Lib) -2to3 (2.x to 3.0 conversion tool) priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/

[issue7791] Python 2.6 standard library "sees also" something not in the standard library

2010-01-26 Thread Brian Curtin
Brian Curtin added the comment: unittest also does this, but it does so at the top and references projects as a whole, rather than individual functions/classes in the project. Seems like this should be taken out. It doesn't exist in any version after 2.6. -- nosy: +brian.c

[issue7795] BaseManager of multiprocessing module throws an exception if socket.setdefaulttimeout is set

2010-01-27 Thread Brian Curtin
Brian Curtin added the comment: Duplicate of #6056. -- nosy: +brian.curtin priority: -> normal resolution: -> duplicate status: open -> closed type: crash -> behavior ___ Python tracker <http://bugs.pytho

[issue7798] document pydoc methods

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

[issue4944] os.fsync() doesn't work as expect in Windows

2010-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/issue4944> ___ ___

[issue1481] test_uuid is warning about unreliable functions

2010-01-28 Thread Brian Curtin
Brian Curtin added the comment: These tests have been disabled for a little over two years now. I've run the previously disabled tests on Windows, Mac OSX, and Linux numerous times and haven't seen any instability or failures (not that it proves much). I wasn't around at t

[issue1926] NNTPS support in nntplib

2010-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> test needed versions: +Python 2.7, Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue1926> ___ _

[issue2052] Allow changing difflib._file_template character encoding.

2010-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker <http://bugs.python.org/issue2052> ___ ___ Python-

[issue1927] raw_input behavior incorrect if readline not enabled

2010-01-28 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> test needed versions: -Python 2.5 ___ Python tracker <http://bugs.python.org/issue1927> ___ ___ Python-bugs-list mai

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

2010-01-29 Thread Brian Curtin
Brian Curtin added the comment: Florent is correct. The patch seems to fix regular popen, but popen3 sees problems. I'll see if I can fit this in and have a look. Also of note is that the other flavors of popen are not tested...at least not in Lib/test/test_popen.py or Lib/test/test_

[issue1926] NNTPS support in nntplib

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

[issue7803] setup hangs on disk space requirements

2010-01-29 Thread Brian Curtin
Brian Curtin added the comment: Dan, there seem to be a number of possible issues in your last two messages. It's not clear to me what the blinking light is. What type of computer do you have and what is the specific installer and version you tried to run? Also, what do you mean when yo

[issue7567] Messed up terminal after calling curses.initscr() twice.

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

[issue7815] Regression in unittest traceback formating extensibility

2010-01-30 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +brian.curtin, michael.foord priority: -> normal stage: -> needs patch ___ Python tracker <http://bugs.python.org/

[issue5484] subprocess.call() fails for .bat files on Windows, if executable path contains parenthesis

2010-01-30 Thread Brian Curtin
Brian Curtin added the comment: I'm not seeing the same thing Tim sees on 2.6, or 3.1 for that matter. Looks like this is still an issue. -- nosy: +brian.curtin priority: -> normal stage: -> test needed versions: +Python 2.6, Python 3.1

[issue7671] test_popen fails if path contains special char like ";"

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

[issue2454] sha and md5 fixer

2010-01-31 Thread Brian Curtin
Changes by Brian Curtin : -- components: -2to3 (2.x to 3.0 conversion tool) stage: -> patch review type: -> behavior ___ Python tracker <http://bugs.python.org/

[issue7826] support caching for 2to3

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

[issue7827] recv_into() argument 1 must be pinned buffer, not bytearray

2010-01-31 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/issue7827> ___ ___ Python-bugs-list

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

2010-02-01 Thread Brian Curtin
Brian Curtin added the comment: The patch intentionally doesn't use assertIsInstance because that method doesn't exist in 2.6. -- ___ Python tracker <http://bugs.python.

[issue6906] Tkinter sets an unicode environment variable on win32

2010-02-01 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Windows keywords: +needs review nosy: +brian.curtin priority: -> normal stage: -> test needed type: -> behavior ___ Python tracker <http://bugs.python.o

[issue4772] undesired switch fall-through in socketmodule.c

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

[issue4772] undesired switch fall-through in socketmodule.c

2010-02-01 Thread Brian Curtin
Brian Curtin added the comment: Minor change to the patch to correct for Antoine's suggestion. -- Added file: http://bugs.python.org/file16089/issue4772.diff ___ Python tracker <http://bugs.python.org/i

[issue4772] undesired switch fall-through in socketmodule.c

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

[issue4772] undesired switch fall-through in socketmodule.c

2010-02-01 Thread Brian Curtin
Changes by Brian Curtin : Added file: http://bugs.python.org/file16090/issue4772.diff ___ Python tracker <http://bugs.python.org/issue4772> ___ ___ Python-bugs-list mailin

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

2010-02-01 Thread Brian Curtin
Brian Curtin added the comment: I haven't yet had a chance to look into what caused the failures, but test_tarfile did not pass. This is on Windows 7 x64. == ERROR: test_extract_hardlink (__main__.MiscRea

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

2010-02-01 Thread Brian Curtin
Brian Curtin added the comment: Most of the guts have already been reviewed, but here are some mainly minor comments on the last patch. Lib/test/symlink_support.py - No need to import print_function - I'd just put the docstrings on one line - A bunch of if tests are one-lined Lib

[issue6760] patch to subprocess docs to better explain Popen's 'args' argument

2010-02-01 Thread Brian Curtin
Brian Curtin added the comment: The raw_input() doesn't provide anything. I'd just drop that and pass the string directly to shlex.split. "Do not put an argument-taking option together with its argument as a single item in the *args* list" -- Something like "Argum

[issue7316] Add a timeout functionality to common locking operations

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

[issue5099] subprocess.POpen.__del__() AttributeError (os module == None!)

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

[issue7838] Undocumented subprocess functions on Windows

2010-02-02 Thread Brian Curtin
New submission from Brian Curtin : On Windows, the subprocess module makes use of functions publicly exposed by PC/_subprocess.c to interact with Win32 API functions. However, no documentation exists for these functions, neither in the online docs nor in docstrings. -- assignee

[issue7838] Undocumented subprocess functions on Windows

2010-02-02 Thread Brian Curtin
Brian Curtin added the comment: Attached is a patch which adds docstrings to the functions in PC/_subprocess.c, documents the functions in Doc/library/subprocess.rst, and removes a chunk of unneeded import code from Lib/subprocess.py -- keywords: +needs review, patch stage: needs

[issue7838] Undocumented subprocess functions on Windows

2010-02-02 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file16110/issue7838.diff ___ Python tracker <http://bugs.python.org/issue7838> ___ ___ Python-bugs-list m

[issue7838] Undocumented subprocess functions on Windows

2010-02-02 Thread Brian Curtin
Changes by Brian Curtin : Added file: http://bugs.python.org/file16111/issue7838.diff ___ Python tracker <http://bugs.python.org/issue7838> ___ ___ Python-bugs-list mailin

[issue7838] Undocumented subprocess functions on Windows

2010-02-02 Thread Brian Curtin
Brian Curtin added the comment: True. Is there value in eventually privatizing these functions? It feels weird having them exposed but not documented at all...maybe just keep the docstrings around? -- status: open -> pending ___ Python trac

[issue7846] Fnmatch cache is never cleared during usage

2010-02-03 Thread Brian Curtin
Changes by Brian Curtin : -- keywords: +needs review priority: -> normal stage: -> test needed type: -> behavior versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___ Python tracker <http://bugs.python.o

[issue7838] Undocumented subprocess functions on Windows

2010-02-03 Thread Brian Curtin
Brian Curtin added the comment: Here's a patch which keeps docstrings, and explicitly qualifies the Windows specific functions from _subprocess rather than using import * (which causes a couple of lines just over 79 chars). Now the functions are more hidden than before. Ran the tests

[issue6716] Windows install error when choosing to compile .py files

2010-02-03 Thread Brian Curtin
Brian Curtin added the comment: I just saw this today while installing the 3.1.1 final MSI on a Server 2003 box. -- components: +Windows nosy: +brian.curtin priority: -> high stage: -> needs patch type: compile error -> behavior ___ Pytho

[issue7854] term paper

2010-02-04 Thread Brian Curtin
Changes by Brian Curtin : -- ___ Python tracker <http://bugs.python.org/issue7854> ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/m

[issue7855] Add test cases for ctypes/winreg for issues found in IronPython

2010-02-04 Thread Brian Curtin
Brian Curtin added the comment: Rather than calling QueryValue and using fail(...) if it doesn't throw, assertRaises(...) would do the trick. -- assignee: theller -> keywords: +needs review nosy: +brian.curtin, michael.foord priority: -> normal stage: ->

[issue7860] 32-bit Python on 64-bit Windows reports incorrect architecture

2010-02-05 Thread Brian Curtin
New submission from Brian Curtin : When running 32-bit Python on a 64-bit version of Windows, therefore running the process in WOW64 mode, platform.machine returns a misleading value. When running in WOW64, the processor architecture is masked to appear as "x86" when the machine i

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

2010-02-05 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15960/issue4722.diff ___ Python tracker <http://bugs.python.org/issue4722> ___ ___ Python-bugs-list m

[issue7863] platform module doesn't detect Windows 7

2010-02-05 Thread Brian Curtin
Brian Curtin added the comment: Note that this will also need the Workstation check that 6.0 has right above this, because both Windows 7 and Windows Server 2008 R2 are version 6.1.x. Also of note is that sys.getwindowsversion (renamed as GetVersionEx here) has been expanded to make use of

[issue7863] platform module doesn't detect Windows 7

2010-02-05 Thread Brian Curtin
Brian Curtin added the comment: Here's a patch which fixes this on trunk. 2.6/3.1 is a different story as there doesn't appear to be a way to get the platform type to differentiate workstation/server. #7766 is what makes it easy on trunk, but it's a new feature and i

[issue7347] Add {Create|Delete}KeyEx to _winreg, doc and test updates

2010-02-06 Thread Brian Curtin
Brian Curtin added the comment: This needs #7860 for properly figuring out the machine architecture for some 32-bit Python on 64-bit Windows tests. -- dependencies: +32-bit Python on 64-bit Windows reports incorrect architecture ___ Python tracker

[issue7347] Add {Create|Delete}KeyEx to _winreg, doc and test updates

2010-02-06 Thread Brian Curtin
Brian Curtin added the comment: Attached is what I believe is the complete patch. You'll need to apply the patch on #7860 for proper test coverage of a 32-bit Python running on 64-bit Windows. Here's a summary of what's contained: 1. Documented and tested the previously u

[issue7867] Proposed FAQ entry on pass-by-? semantics and the meaning of 'variable' in python

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

[issue7301] Add environment variable $PYTHONWARNINGS

2010-02-06 Thread Brian Curtin
Changes by Brian Curtin : Removed file: http://bugs.python.org/file15889/issue7301.diff ___ Python tracker <http://bugs.python.org/issue7301> ___ ___ Python-bugs-list m

[issue7301] Add environment variable $PYTHONWARNINGS

2010-02-06 Thread Brian Curtin
Brian Curtin added the comment: Updated patch, tests weren't working. -- Added file: http://bugs.python.org/file16157/issue7301.diff ___ Python tracker <http://bugs.python.org/i

[issue7874] logging.basicConfig should raise warning/exception on second call

2010-02-07 Thread Brian Curtin
Changes by Brian Curtin : -- components: +Library (Lib) -2to3 (2.x to 3.0 conversion tool) nosy: +vinay.sajip priority: -> normal stage: -> test needed versions: +Python 3.1 -Python 2.5 ___ Python tracker <http://bugs.python.org/

[issue7877] Iterators over _winreg EnumKey and EnumValue results

2010-02-07 Thread Brian Curtin
New submission from Brian Curtin : While EnumKey and EnumValue directly implement the underlying Windows calls of the same name, they don't feel very Pythonic. The user has to create their own loop and increment a counter to get all of the keys or values, stopping the loop when Windows

[issue5802] The security descriptors of python binaries in Windows are not strict enough

2010-02-07 Thread Brian Curtin
Changes by Brian Curtin : -- stage: -> test needed ___ Python tracker <http://bugs.python.org/issue5802> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7884] IDLE 3.1.1 crashes with UnicodeDecodeError when I press Ctrl-Space

2010-02-08 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue7884> ___ ___

[issue5802] The security descriptors of python binaries in Windows are not strict enough

2010-02-08 Thread Brian Curtin
Brian Curtin added the comment: Is the situation any different if you install Python to "C:\Program Files"? This seems to be at least part of the reason IronPython installs to "C:\Program Files", which was discussed on the IronPython list [1] a few mon

[issue7883] CallTips.py _find_constructor does not work

2010-02-08 Thread Brian Curtin
Brian Curtin added the comment: That change works for me. -- nosy: +brian.curtin priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/

[issue7877] Iterators over _winreg EnumKey and EnumValue results

2010-02-08 Thread Brian Curtin
Brian Curtin added the comment: Interesting, I'll take a look and see why that's happening. Good point about the names. -- ___ Python tracker <http://bugs.python.

[issue7712] Add a context manager to change cwd in test.test_support and run the test suite in a temp dir.

2010-02-08 Thread Brian Curtin
Brian Curtin added the comment: With the latest patch I get one failure: test_bufio. I piped that test to a file and attached the results here. There are numerous "Permission denied: @test" IOErrors. -- Added file: http://bugs.python.org/file16181/test_bufio.

[issue7712] Add a context manager to change cwd in test.test_support and run the test suite in a temp dir.

2010-02-08 Thread Brian Curtin
Brian Curtin added the comment: Yep, that's the only one failing. The output I attached is the result of running the test alone. -- ___ Python tracker <http://bugs.python.org/i

[issue7229] [PATCH] Manual entry for time.daylight can be misleading

2010-02-09 Thread Brian Curtin
Brian Curtin added the comment: I don't think altzone was incorrect, but it could also use a little rewording. Attached is a patch which rewords daylight and altzone. Thoughts? -- keywords: +needs review priority: -> normal stage: -> patch review versions: -Python 2.4,

[issue3771] test_httpservers intermittent failure

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue3771> ___ ___ Python-bugs-list mailing list Unsubscri

[issue4713] Installing sgmlop can crash xmlrpclib

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue4713> ___ ___ Python-bugs-list mailing list Unsubscri

[issue1533] Bug in range() function for large values

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal type: crash -> behavior versions: +Python 3.1, Python 3.2 -Python 3.0 ___ Python tracker <http://bugs.python.org/

[issue4891] formatwarning function signature change breaks code

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue4891> ___ ___

[issue6815] UnicodeDecodeError in os.path.expandvars

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue6815> ___ ___

[issue5223] infinite recursion in PyErr_WriteUnraisable

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

[issue5527] multiprocessing won't work with Tkinter (under Linux)

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> needs patch type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue5527> ___ ___

[issue4918] Windows installer created with Python 2.5 does not work with Python 2.6.1

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue4918> ___ ___ Python-bugs-list

[issue6270] Menu deletecommand fails if command is already deleted

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> patch review type: crash -> behavior versions: +Python 3.2 -Python 2.5, Python 3.0 ___ Python tracker <http://bugs.python.o

[issue6470] Tkinter import fails when running Python.exe from a network share

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue6470> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6476] MSVCRT's spawnve/spawnvpe are not thread safe

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal type: crash -> behavior versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.4, Python 2.5 ___ Python tracker <http://bugs.python.org/

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

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue6668> ___ ___ Python-bugs-list mailing list Unsubscri

[issue6863] Wrong linker command if CXX set to "ccache g++"

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue6863> ___ ___ Python-bugs-list

[issue5504] ctypes should work with systems where mmap can't be PROT_WRITE and PROT_EXEC

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

[issue7505] ctypes not converting None to Null in 64-bit system

2010-02-09 Thread Brian Curtin
Brian Curtin added the comment: What is the output of your example? I'm not on Linux at the moment, but I'm trying to see if this is actually a crash. -- nosy: +brian.curtin priority: -> normal stage: -> test needed versio

[issue6895] locale._parse_localename fails when localename does not contain encoding information

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- type: crash -> behavior ___ Python tracker <http://bugs.python.org/issue6895> ___ ___ Python-bugs-list mailing list Unsubscri

[issue7424] segmentation fault in listextend during install

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- priority: -> normal stage: -> test needed ___ Python tracker <http://bugs.python.org/issue7424> ___ ___ Python-bugs-list

[issue4713] Installing sgmlop causes xmlrpclib error

2010-02-09 Thread Brian Curtin
Brian Curtin added the comment: The patch could use a test (which doesn't require sgmlop). -- keywords: +needs review nosy: +brian.curtin priority: -> normal stage: -> test needed title: Installing sgmlop can crash xmlrpclib -> Installing sgmlop causes x

[issue7893] unittest: have to subclass TextTestRunner to use alternative TestResult

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

[issue7896] IDLE.app crashes when attempting to open a .py file

2010-02-09 Thread Brian Curtin
Changes by Brian Curtin : -- assignee: -> ronaldoussoren components: +Macintosh nosy: +ronaldoussoren ___ Python tracker <http://bugs.python.org/iss

[issue7712] Add a context manager to change cwd in test.test_support and run the test suite in a temp dir.

2010-02-09 Thread Brian Curtin
Brian Curtin added the comment: With Ezio's latest patch (sent via IRC), test_bufio still fails and additionally test_mailbox fails. If I apply the patch on #7443 along with Ezio's patch, everything looks fine. I haven't thoroughly looked at that issue, but on the surface i

<    1   2   3   4   5   6   7   8   9   10   >