[issue10037] multiprocessing.pool processes started by worker handler stops working

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider added the comment: The attached patch does change the semantics somewhat, but I don't fully understand how much. In particular: It changes the "get()" call to be turned into "get(timeout=1.0)" if inqueue doesn't have a _reader attribute. In

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

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider added the comment: Martin: They are looking for you to review this, in particular see: http://bugs.python.org/issue7511#msg106420 -- assignee: tarek -> loewis nosy: +jafo ___ Python tracker <http://bugs.python.org/iss

[issue8954] wininst regression: errors when building on linux

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider added the comment: Éric: In http://bugs.python.org/issue8954#msg135902 are you saying: This issue needs to be re-targeted to a newer Python. Close -- won't fix. Something else? This issue seems to be stuck here, any ideas on what needs to be done to move this fo

[issue6624] PyArg_ParseTuple with "s" format and NUL: Bogus TypeError detail string.

2009-08-01 Thread Sean Reifschneider
New submission from Sean Reifschneider : As detailed in the python-dev post: http://mail.python.org/pipermail/python-dev/2009-July/090791.html I have found a bug in the handling of PyArg_ParseTuple where a NUL in an argument causes a message like this: syslog.syslog('hello\0

[issue6624] PyArg_ParseTuple with "s" format and NUL: Bogus TypeError detail string.

2009-08-01 Thread Sean Reifschneider
Sean Reifschneider added the comment: Fixed in python trunk commit 74277. Fixed in py3k trunk commit 74278. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5063] python-2.6.spec doesn't build properly

2010-01-15 Thread Sean Reifschneider
Sean Reifschneider added the comment: Committed to release26-maint as 77514. Committed to trunk as 77515. Committed to 3k as 77516. -- resolution: -> accepted stage: -> committed/rejected status: open -> closed ___ Python track

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider added the comment: In this case, the docs.python.org link you point to seems to be correct, saying that it returns a timedelta. It is the docstring that says it's minutes east of UTC. I've attached a patch which changes this wording to: timedelta() showing o

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider added the comment: Alternately, here is a patch that just takes the docs.python.org description. -- Added file: http://bugs.python.org/file17496/python-utcoffsetdoc2.patch ___ Python tracker <http://bugs.python.org/issue8

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider added the comment: Then how about: timedelta() showing offset from UTC, negative values indicating West of UTC ? -- ___ Python tracker <http://bugs.python.org/issue8

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider added the comment: I'm fine without (). I thought the direction was generally initial-capped, but I may be wrong there. Let's go with "west". -- ___ Python tracker <http://bu

[issue8810] TZ offset description is unclear in docs

2010-06-03 Thread Sean Reifschneider
Sean Reifschneider added the comment: Committed to 2.7 in 81681 and 3.x in 81682. -- keywords: +needs review -patch resolution: -> accepted stage: -> committed/rejected status: open -> closed type: -> feature request ___ Python tr

[issue17424] help() should use the class signature

2013-03-14 Thread Sean Reifschneider
New submission from Sean Reifschneider: David Beazley in his tutorial pointed out that you could use a metaclass to create function signatures for the common use case of: class foo: def __init__(self, name, value, high, low): self.name = name self.value = value [...] The

[issue17053] pydoc should use inspect.signature instead of inspect.getfullargspec

2013-03-18 Thread Sean Reifschneider
Sean Reifschneider added the comment: This may be related to: http://bugs.python.org/issue17424 Perhaps there is a common fix that can address this for both? -- nosy: +jafo ___ Python tracker <http://bugs.python.org/issue17

[issue17424] help() should use the class signature

2013-03-18 Thread Sean Reifschneider
Sean Reifschneider added the comment: This might be a duplicate of issue17053, but the patch provided there doesn't resolve the issue, at least as far as I know it. Here is an example, from David Beazley's talk at PyCon 2013: from inspect import Parameter, Signature def make_signa

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2013-03-18 Thread Sean Reifschneider
Sean Reifschneider added the comment: I've tried to test this but v4 doesn't apply cleanly after pure2 is applied, and v4 doesn't include enough to test it (applying v4 only causes test failures). I reviewed v4 and it looks fine in general. I do see that there are changes in

[issue16754] Incorrect shared library extension on linux

2013-03-20 Thread Sean Reifschneider
Sean Reifschneider added the comment: Toshio and Matthias: This approach seems sane to me, Nick asked me to review this ticket. I'm not coming up with any objections. +1 for retiring SO at some point after 3.2, and EXT_SUFFIX and SHLIB_SUFFIX. What documentation needs to be changed?

<    1   2   3   4