Changes by Brian Curtin :
Removed file: http://bugs.python.org/file15851/issue2846.diff
___
Python tracker
<http://bugs.python.org/issue2846>
___
___
Python-bugs-list m
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
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
Changes by Brian Curtin :
Removed file: http://bugs.python.org/file15852/issue2846.diff
___
Python tracker
<http://bugs.python.org/issue2846>
___
___
Python-bugs-list m
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
Changes by Brian Curtin :
--
priority: -> normal
stage: -> needs patch
___
Python tracker
<http://bugs.python.org/issue7662>
___
___
Python-bugs-list
Changes by Brian Curtin :
--
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue2796>
___
___
Python-bugs-list
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
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
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/
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
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
Changes by Brian Curtin :
Removed file: http://bugs.python.org/file15324/issue7301_v2.patch
___
Python tracker
<http://bugs.python.org/issue7301>
___
___
Python-bug
Changes by Brian Curtin :
Removed file: http://bugs.python.org/file15322/issue7301.patch
___
Python tracker
<http://bugs.python.org/issue7301>
___
___
Python-bugs-list m
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
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
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
Changes by Brian Curtin :
--
keywords: +needs review
priority: -> normal
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue7705>
___
__
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
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
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/
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/
Changes by Brian Curtin :
--
keywords: +needs review
priority: -> normal
stage: -> test needed
type: crash -> behavior
___
Python tracker
<http://bugs.python.o
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/
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
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
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
Changes by Brian Curtin :
--
versions: +Python 3.2 -Python 2.7
___
Python tracker
<http://bugs.python.org/issue8777>
___
___
Python-bugs-list mailing list
Unsub
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:/
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
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
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
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
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
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
Changes by Brian Curtin :
--
nosy: +dino.viehland
___
Python tracker
<http://bugs.python.org/issue8825>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Changes by Brian Curtin :
--
components: +Windows
versions: -Python 2.7
___
Python tracker
<http://bugs.python.org/issue7171>
___
___
Python-bugs-list mailin
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/
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
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
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
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
Changes by Brian Curtin :
--
nosy: +brian.curtin
stage: -> needs patch
___
Python tracker
<http://bugs.python.org/issue8905>
___
___
Python-bugs-list mai
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
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
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
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/
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
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
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:
Changes by Brian Curtin :
--
resolution: -> invalid
___
Python tracker
<http://bugs.python.org/issue8953>
___
___
Python-bugs-list mailing list
Unsubscri
Brian Curtin added the comment:
Where was that reported?
--
nosy: +brian.curtin
stage: -> unit test needed
type: -> behavior
___
Python tracker
<http://bugs.python.org/
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
Changes by Brian Curtin :
--
nosy: +srid
___
Python tracker
<http://bugs.python.org/issue8961>
___
___
Python-bugs-list mailing list
Unsubscribe:
http://mail.pyth
Changes by Brian Curtin :
--
nosy: +brian.curtin
___
Python tracker
<http://bugs.python.org/issue8972>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Brian Curtin :
--
priority: normal -> low
stage: -> needs patch
type: -> behavior
versions: -Python 3.3
___
Python tracker
<http://bugs.python.o
Changes by Brian Curtin :
--
title: patch: BaseHTTPServer reinventing rfc822 date formatting ->
BaseHTTPServer reinventing rfc822 date formatting
___
Python tracker
<http://bugs.python.org/iss
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
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 -
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.
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
Changes by Brian Curtin :
--
assignee: -> brian.curtin
nosy: +brian.curtin
stage: -> needs patch
___
Python tracker
<http://bugs.python.org/issue7566>
___
__
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
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
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.
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
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/
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
Changes by Brian Curtin :
--
nosy: -brian.curtin
___
Python tracker
<http://bugs.python.org/issue8905>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Brian Curtin :
--
nosy: -brian.curtin
___
Python tracker
<http://bugs.python.org/issue7582>
___
___
Python-bugs-list mailing list
Unsubscribe:
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.
--
Changes by Brian Curtin :
--
nosy: +brian.curtin
___
Python tracker
<http://bugs.python.org/issue9191>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
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
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
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
Brian Curtin added the comment:
Yep, setting this back to closed.
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue7766>
___
___
Py
Changes by Brian Curtin :
--
components: +Extension Modules -Library (Lib)
versions: -Python 2.7, Python 3.1
___
Python tracker
<http://bugs.python.org/issue1723
Changes by Brian Curtin :
--
stage: -> unit test needed
type: -> feature request
___
Python tracker
<http://bugs.python.org/issue1723038>
___
___
Pyth
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
Changes by Brian Curtin :
--
components: +Extension Modules -Library (Lib)
___
Python tracker
<http://bugs.python.org/issue1522400>
___
___
Python-bugs-list mailin
Changes by Brian Curtin :
--
components: +Unicode
___
Python tracker
<http://bugs.python.org/issue6668>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Brian Curtin :
--
components: +Extension Modules -Library (Lib)
___
Python tracker
<http://bugs.python.org/issue7365>
___
___
Python-bugs-list mailin
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
Changes by Brian Curtin :
--
assignee: -> merwok
___
Python tracker
<http://bugs.python.org/issue1410680>
___
___
Python-bugs-list mailing list
Unsubscri
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
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
Changes by Brian Curtin :
--
nosy: +brian.curtin
___
Python tracker
<http://bugs.python.org/issue9262>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Brian Curtin added the comment:
Looks good to me.
--
___
Python tracker
<http://bugs.python.org/issue5673>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
1201 - 1300 of 1382 matches
Mail list logo