[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? PEP

[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 rep...@bugs.python.org http://bugs.python.org/issue17053

[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_signature(names

[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 it unrelated

[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

[issue14259] re.finditer() doesn't accept keyword arguments

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Working on this. -- nosy: +jafo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14259

[issue14259] re.finditer() doesn't accept keyword arguments

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Attached is a patch which implements this, including updated tests. I would appreciate a review of this patch. -- assignee: - ezio.melotti keywords: +needs review, patch stage: - patch review Added file: http://bugs.python.org

[issue1531415] parsetok.c emits warnings by writing to stderr

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Michele: Do you know what needs to be done to determine the resolution to the _warnings/pgen question? If not, maybe asking the question on python-dev could get some advice. -- nosy: +jafo

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

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 the case that inqueue

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

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 rep...@bugs.python.org

[issue8954] wininst regression: errors when building on linux

2012-03-12 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-02-22 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Committed in r88500. -- stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-24 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Thanks. I had just read that a day or so ago, reviewing it for Brett's work. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-22 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: At this point I'm going to consider this good to go, and will commit it after the 3.2 final release. Thanks for the review everyone. Of course, I'm open to further suggestions until then, just not expecting any... -- assignee

[issue8591] update mkpkg to latest coding standards

2011-01-22 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: -- nosy: -jafo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8591 ___ ___ Python-bugs-list mailing

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20428/python-underscore_crypt-3.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Sure thing, here's an svn diff. I had switched to the diff because I couldn't get it to patch into a fresh trunk, but the format looked fine; not sure why it couldn't find the files. Anyway, here's a new version. -- Added file

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Not sure if that was meant to be a suggestion for why my local patching wasn't working from the svn diff output, but obviously -5 was messed up. Here's a new version that I can apply to my fresh trunk and passes make test

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Thanks for the pointer about patch -p0. I *HAD* tried that, but it didn't seem to work either. I'll double check that though... svn diff is what I'd prefer, because then I can svn commit it when it's ready. Any other review feedback

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Affirmative on the svn mv for the C module. The duplicated code, thanks for pointing that out. Someone else mentioned it, but I didn't understand what they were saying and they didn't reply to my request for clarification. Fixed

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20433/python-underscore_crypt-4.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20442/python-underscore_crypt-5.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20443/python-underscore_crypt-6.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-17 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Oops, thanks. It's in there now, though for some reason I can't get this patch to apply to trunk, but I'll have to look at that later this afternoon. I wanted to get this new version up in the interim since it definitely does include

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-17 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20422/python-underscore_crypt.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-17 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: I've made a new .patch file using diff -c rather than svn diff. This is the same code, but applies without manual intervention. -- Added file: http://bugs.python.org/file20428/python-underscore_crypt-3.patch

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-17 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Removed file: http://bugs.python.org/file20427/python-underscore_crypt-2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10924

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-17 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Thanks for the review. Attached is a new version of the patch. 1) Done. 2) Good point, I didn't think of that. I've changed it into a class that stores the methods list, and made the module methods point to that method on an instance

[issue10924] Adding salt and Modular Crypt Format to crypt library.

2011-01-16 Thread Sean Reifschneider
New submission from Sean Reifschneider j...@tummy.com: Over the years I've written the same code over and over to create a random salt string of 2 characters. Worse, the Modular Crypt Format is difficult to find documentation on, so creating stronger hashed passwords is difficult to get

Help with threading.local use in python-memcache module.

2010-12-17 Thread Sean Reifschneider
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Some time ago I accepted a patch to base the memcache client module on the threading.local class. Now I've got some reports of issues with this that I'm not sure what the best way to resolve is. Bug #530229:

[issue4356] Add key argument to bisect module functions

2010-08-29 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: This issue came up on #python IRC, and that combined with the number of times this has been duplicated makes me think that maybe the mention of the SortedCollection recipe should be a little more prominent. Perhaps either moved up

[issue8810] TZ offset description is unclear in docs

2010-06-03 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 tracker

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 rep...@bugs.python.org

[issue8810] TZ offset description is unclear in docs

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

[issue8810] TZ offset description is unclear in docs

2010-05-29 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 rep...@bugs.python.org http://bugs.python.org

[issue8214] Add exception logging function to syslog module

2010-05-06 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: This won't go into 2.7.0. I will do a patch for 3.x, and wait for 2.7.0 to see if it can go into 2.7.1. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8214

[issue8214] Add exception logging function to syslog module

2010-05-06 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: This won't go into 2.7.0. I will do a patch for 3.x, and wait for 2.7.0 to see if it can go into 2.7.1. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8214

[issue8214] Add exception logging function to syslog module

2010-05-06 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8214 ___ ___ Python-bugs-list mailing list

[issue8214] Add exception logging function to syslog module

2010-05-01 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: I have completed the exception handling code as prototyped in msg101687. Please review. -- assignee: - jafo keywords: +needs review stage: needs patch - patch review Added file: http://bugs.python.org/file17159/logexception2.patch

[issue8214] Add exception logging function to syslog module

2010-05-01 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Jack Diederich commented: I don't have my tracker login on this computer so I'll post here. I'd +1 on making the module python with just the core functionality imported from C (it releases the GIL when doing IO). Then you could replace

[issue8214] Add exception logging function to syslog module

2010-05-01 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Thanks for the review Jack. I was very tempted to split it into C and Python components, but I decided against it because it's so close to the 2.7 release. I think it would be best to defer that for the Python 3 release, because of potential

[issue8214] Add exception logging function to syslog module

2010-05-01 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Changed to use import_module. -- Added file: http://bugs.python.org/file17177/logexception4.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8214

[issue8214] Add exception logging function to syslog module

2010-05-01 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Switched to using assertTrue/assertFalse. -- Added file: http://bugs.python.org/file17179/logexception5.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8214

[issue8214] Add exception logging function to syslog module

2010-04-26 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: I believe I have the first function implemented. See the attached patch for that code and feel free to review. -- keywords: +patch nosy: -haypo Added file: http://bugs.python.org/file17089/logexception.diff

[issue5575] Add env vars for controlling building sqlite, hashlib and ssl

2010-04-24 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Collin: Antoine has asked for some feedback, can you answer that question? -- assignee: - collinwinter nosy: +jafo priority: - normal ___ Python tracker rep...@bugs.python.org http

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-23 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Committed as 80396. Included a change to let openlog(3) pick the ident instead of using the static string python. -- resolution: - accepted status: open - closed ___ Python tracker rep

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-23 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Ported to python3 and committed as 80401. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8451

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-20 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Ok, so I left the argument style in the docs as it was. *** NOTE ***: Sean: Change this for the 3 trunk commit. Setting the python string is outside of the argv function because we want to use python on any of the many places where

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-19 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Added file: http://bugs.python.org/file16983/syslog-kwargs2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8451

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-19 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Antoine: I believe I have everything you mentioned addressed with the new patch. That was an awesome review, thank you so much. The only things I didn't do were parts of the last two items you bring up: If PyTuple_New(0) fails, bail out

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-18 Thread Sean Reifschneider
New submission from Sean Reifschneider j...@tummy.com: As discussed in this thread: http://mail.python.org/pipermail/python-dev/2010-March/098500.html The syslog module is using the C argv[0] as the program name, not the python sys.argv[0]. So, in most cases this means that unless you

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: Added file: http://bugs.python.org/file16982/syslog-kwargs.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8451

[issue8451] syslog.syslog('msg') logs message with ident python.

2010-04-18 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: -- nosy: +eric.smith ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8451 ___ ___ Python-bugs-list

[issue3119] pickle.py is limited by python's call stack

2010-03-21 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Sorry for the delay in getting to this patch. I've reviewed this patch and it seems fine to me. The only thing I see outstanding is the recommendation made by Alexandre about changing the C module to also implement this. Aaron: You may

[issue3119] pickle.py is limited by python's call stack

2010-03-21 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Ugh, I forgot to check the output of my test run before submitting the last reply. With the patch applied, make test fails with: test_pickle Fatal Python error: Cannot recover from stack overflow. Fatal Python error: Cannot recover from

[issue5671] Speed up pickling of lists in cPickle

2010-03-21 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: pickle_batch_list_exact_py3k.diff applies cleanly on current py3k trunk and passes tests. cpickle_list.patch applies cleanly against 2.x trunk and passes make test. I don't see any objections brought up about this set of patches, so we can

[issue6543] traceback presented in wrong encoding

2010-03-21 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: From a cursory glance, I don't see any problems with this patch. Though I admit that I don't know the traceback code nearly as well as you, Amaury. The tests pass on py3k trunk on my Linux box. If you want other review, perhaps ask

[issue6543] traceback presented in wrong encoding

2010-03-21 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: -- priority: - normal ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6543 ___ ___ Python-bugs-list

[issue8084] pep-0370 on osx duplicates existing functionality

2010-03-20 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Since this needs review, and Christian is the author of that PEP, I'm assigning it to him. If not appropriate, any suggestions on where to get visibility to get reviewers? -- assignee: ronaldoussoren - christian.heimes nosy

[issue7072] isspace(0xa0) is true on Mac OS X

2010-03-20 Thread Sean Reifschneider
Changes by Sean Reifschneider j...@tummy.com: -- priority: - normal ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7072 ___ ___ Python-bugs-list

[issue4931] distutils does not show any error msg when can't build C module extensions due to a missing C compiler

2010-03-20 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Tarek: This patch seems reasonable to me, is this something that can be applied? -- nosy: +jafo priority: - normal ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4931

[issue2548] Undetected error in exception handling

2010-03-19 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: The final word on this seems to be this: - Wait until when we aren't in a beta release. (DONE) - Quoting: Well, For Py3K at least we might need to consider going through the C API and fixing it so that these incorrect

[issue7443] test.support.unlink issue on Windows platform

2010-03-19 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: Andrew: There have been changes committed within the last week to #7712, which Florent suggested might be related. Can you please re-test this to see if it still exists, and if it does, bug me and I'll try to get some more movement

[issue2356] fixer for sys.exitfunc - atexit

2010-03-19 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com added the comment: I've posted to python-dev asking for a reviewer for this, the thread is at http://mail.python.org/pipermail/python-dev/2010-March/098597.html -- nosy: +jafo ___ Python tracker rep

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

2010-01-15 Thread Sean Reifschneider
Sean Reifschneider j...@tummy.com 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 tracker rep

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

2009-08-01 Thread Sean Reifschneider
New submission from Sean Reifschneider j...@tummy.com: 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

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

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

Alpha/For Discussion: RPMs for around 3,000 PyPI packages.

2009-04-01 Thread Sean Reifschneider
free to either discuss it on the python mailing list or via e-mail to jafo-commun...@tummy.com Thanks, Sean -- Never interrupt your enemy when he is making a mistake. -- Napoleon Bonaparte Sean Reifschneider, Member of Technical Staff j...@tummy.com tummy.com, ltd. - Linux

[issue4247] Docs: Provide some examples of pass use in the tutorial.

2008-11-05 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I'm attaching a new version here, which addresses the object call type comments. Added file: http://bugs.python.org/file11948/pass-examples-2.patch ___ Python tracker [EMAIL PROTECTED] http

[issue4247] Docs: Provide some examples of pass use in the tutorial.

2008-11-02 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I originally had that, but then I realized that if I make it a comment I can then do something like dw. on that line when I start filling in the code to keep the comment around. Because I find that when I fill in the high level comments

[issue4247] Docs: Provide some examples of pass use in the tutorial.

2008-11-01 Thread Sean Reifschneider
New submission from Sean Reifschneider [EMAIL PROTECTED]: I'm giving a Python tutorial to a bunch of local people and have decided to use the Python.org tutorial to go by. One of the things I found I wanted in the section on the pass statement was more information about it's use. But I also

[issue2219] Py30a3: Possibly confusing message when module detection fails

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Don't modify Modules/Setup*, do as the message says and modify setup.py. Search for 4, 5, and change that to 4, 6, then run configure and make and it will build without this message. I have done this against the py3k trunk and it built

[issue2229] Search in 2.6 docs does not work

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I just tested it under Linux Fedora 8 Firefox 3 and it shows results for the searches move and rename and got reasonable-looking results. -- nosy: +jafo priority: - normal resolution: later - works for me status: pending - closed

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: This patch looks ok to me, but I'd like jlt63 to review it since they were the last to touch these regexes. -- assignee: - jlt63 keywords: +easy nosy: +jafo, jlt63 priority: - normal type: - behavior

[issue2236] Distutils' mkpath implementation ignoring the mode parameter

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: This patch looks good to me. Greg? -- assignee: - gward components: +Distutils -Library (Lib) keywords: +easy nosy: +gward, jafo priority: - normal __ Tracker [EMAIL PROTECTED] http

[issue2238] TypeError instead of SyntaxError for syntactically invalid gen exp

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Back-ported to 2.5 and committed in rev 61675. -- nosy: +jafo priority: - normal status: pending - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2238

[issue1524] os.system() fails for commands with multiple quoted file names

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I would agree with Georg that there isn't anything we can do about this. I had someone try from the Windows XP command shell and: dir /w reports that it can't run the combined command, where: dir /w works just fine. My conclusions

[issue2243] urllib2. strange behavior for getting chuncked transfer-ecnoded data

2008-03-20 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- assignee: - georg.brandl nosy: +georg.brandl priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2243

[issue2244] urllib and urllib2 decode userinfo multiple times

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Fred: You most recently touched the code impacted by this test, does this sound reasonable? -- assignee: - fdrake nosy: +fdrake, jafo priority: - normal type: behavior - resource usage versions: +Python 2.6

[issue2219] Py30a3: Possibly confusing message when module detection fails

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: It's actually been quite a while since it changed from being Modules/Setup to being in setup.py, I think a couple of years at least. And, yes, I realize that Fedora is changing the Modules/Setup file in their SRPM, but with Python 3k

[issue2211] Cookie.Morsel interface needs update

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I'm going to push this to pending until you can get a patch. Thanks, Jamie. -- nosy: +jafo priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2211

[issue2211] Cookie.Morsel interface needs update

2008-03-20 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- status: open - pending __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2211 __ ___ Python-bugs-list mailing list

[issue2248] quit() method of SMTP instance (of smtplib) doesn't return it's result

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Kei: The documentation does not say that quit() returns a value, so the current behavior is correct. However, SMTP defines a return value for QUIT, so there is a case for smtplib.quit() returning that value. This patch does need

[issue2250] rlcompleter raises Exception on bad input

2008-03-20 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Is a straightforward patch, but I'd like NAS to comment on the change in behavior. Probably would also need a documentation change, are you up for doing that Lorenz? -- assignee: - nascheme keywords: +easy nosy: +jafo, nascheme

[issue2222] Memory leak in os.rename?

2008-03-20 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue __ ___ Python-bugs-list mailing list

[issue2102] New style vs. old style classes __ror__() operator overloading

2008-03-19 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- assignee: - fdrake components: +Documentation -Interpreter Core nosy: +fdrake priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2102

[issue1641] asyncore delayed calls feature

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Giampaolo: Can you pleaes bring this up on python-dev or the normal python mailing list for further discussion on the issue? -- assignee: - akuchling keywords: +patch nosy: +akuchling, jafo priority: - normal type: - feature

[issue2113] Bad interaction between signal and subprocess

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Daniele: Please provide an updated version of this patch based on the feedback below. -- assignee: - gregory.p.smith keywords: +patch nosy: +gregory.p.smith, jafo priority: - normal type: crash - behavior

[issue2116] weakref copy module interaction

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Rick: In the future, please provide a context or unified diff (diff -c) so that we get the file name that the diff is for and some additional context. -- assignee: - tim_one keywords: +patch nosy: +jafo, tim_one priority

[issue2125] Read support for Records in msilib

2008-03-19 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- assignee: - loewis keywords: +patch nosy: +loewis priority: - normal title: [patch] Read support for Records in msilib - Read support for Records in msilib __ Tracker [EMAIL PROTECTED] http

[issue1390] toxml generates output that is not well formed

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Martin: What do you think of this patch? -- assignee: - loewis nosy: +jafo priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1390

[issue1943] improved allocation of PyUnicode objects

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Marc-Andre: Wit the udpated patches, is this a set of patches we can accept? -- assignee: - lemburg keywords: +patch nosy: +jafo priority: - normal __ Tracker [EMAIL PROTECTED] http

[issue1813] Codec lookup failing under turkish locale

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Marc-Andre: How should we proceed with this bug? Discuss on python-dev or c.l.python? -- assignee: - lemburg keywords: +patch nosy: +jafo priority: - normal __ Tracker [EMAIL PROTECTED] http

[issue2132] Blocking sockets take entirely too long to timeout

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: smtplib is for sending messages via SMTP, not for testing to see if a user is behind an ISP that is incorrectly blocking outgoing SMTP connections. I would argue the incorrectly because they are dropping rather than rejecting

[issue2141] Pydoc interactive browser misses some docs

2008-03-19 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- assignee: - ping nosy: +ping priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2141 __ ___ Python

[issue2148] nis module not supporting group aliases

2008-03-19 Thread Sean Reifschneider
Changes by Sean Reifschneider [EMAIL PROTECTED]: -- assignee: - loewis priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2148 __ ___ Python-bugs-list

[issue2155] optparse.OptionGroup with_statement context handling

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Patch is inline. -- assignee: - gward keywords: +patch nosy: +gward, jafo priority: - normal __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2155

[issue2059] OptionMenu class is defined both in Tkinter and Tix

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I don't see the problem with the example listed in the last message. It sounds like the Tix documentation is confirming that this is the desired behavior. -- nosy: +jafo priority: - normal resolution: - works for me status: open

[issue1741] .pypirc not found on windows

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: I'm closing this as a duplicate of #1858. -- nosy: +jafo resolution: - duplicate status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1741

  1   2   3   >