[issue2316] TimedRotatingFileHandler names files incorrectly if nothing is logged during an interval

2008-03-17 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: - vsajip nosy: +vsajip __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2316 __ ___ Python-bugs-list mailing list

[issue2317] TimedRotatingFileHandler logic for removing files wrong

2008-03-17 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: - vsajip nosy: +vsajip __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2317 __ ___ Python-bugs-list mailing list

[issue2318] TimedRotatingFileHandler: rotate every month, or every year

2008-03-17 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: - vsajip nosy: +vsajip __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2318 __ ___ Python-bugs-list mailing list

[issue2352] Use of __oct__/__hex__ should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Use of __hex__ and __oct__ should raise a Py3K warning. -- components: Interpreter Core keywords: 26backport messages: 63722 nosy: brett.cannon priority: immediate severity: normal status: open title: Use of __oct__/__hex__ should

[issue448736] pydoc needs readline completion

2008-03-17 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: Closing as duplicate, then. -- nosy: +georg.brandl resolution: - duplicate status: open - closed superseder: - help() with readline support Tracker [EMAIL PROTECTED]

[issue2353] Use of file.xreadlines() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Using file.xreadlines() should raise a Py3K warning. -- components: Interpreter Core keywords: 26backport messages: 63724 nosy: brett.cannon priority: immediate severity: normal status: open title: Use of file.xreadlines() should raise

[issue2354] cmp argument to list.sort()/sorted() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: The cmp argument for list.sort() and sorted() should raise a Py3K warning. -- keywords: 26backport messages: 63725 nosy: brett.cannon priority: immediate severity: normal status: open title: cmp argument to list.sort()/sorted() should

[issue2355] Using buffer() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Using buffer() should raise a Py3K warning. -- components: Interpreter Core keywords: 26backport messages: 63726 nosy: brett.cannon priority: immediate severity: normal status: open title: Using buffer() should raise a Py3K warning

[issue2328] Class **kwds broken (PEP 3115)

2008-03-17 Thread Jack Diederich
Jack Diederich [EMAIL PROTECTED] added the comment: Not a bug. If you pass arbitrary keywords in class construction you have to define __new__ and __init__ on the metaclass to handle them. -- resolution: - invalid status: open - closed __ Tracker

[issue2326] Doc isnumeric and isdecimal for the unicode object

2008-03-17 Thread Steven Bethard
Steven Bethard [EMAIL PROTECTED] added the comment: Committed in revision 61453. -- status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2326 __ ___

[issue2310] Reorganize the 3.0 Misc/NEWS file

2008-03-17 Thread Guido van Rossum
Guido van Rossum [EMAIL PROTECTED] added the comment: Correct. Martin I just discussed this. We'll empty the current 3.0 NEWS file and start adding stuff consistently from 3.0a3, but skipping stuff merged from 3.0. For the big changes since 2.x, people will have to refer to other porting

[issue2313] correct int / long object type casts

2008-03-17 Thread Joseph Armbruster
Changes by Joseph Armbruster [EMAIL PROTECTED]: -- type: - compile error __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2313 __ ___ Python-bugs-list mailing list

[issue1477] UnicodeDecodeError that cannot be caught in narrow unicode builds

2008-03-17 Thread Sean Reifschneider
Sean Reifschneider [EMAIL PROTECTED] added the comment: Can someone comment on this, or bring it up on python-dev if it needs more discussion? -- assignee: - doerwalter nosy: +doerwalter, jafo priority: - low __ Tracker [EMAIL PROTECTED]

[issue2356] sys.exitfunc should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: sys.exitfunc should raise a Py3K warning when set/used. -- components: Interpreter Core keywords: 26backport messages: 63731 nosy: brett.cannon priority: immediate severity: normal status: open title: sys.exitfunc should raise a Py3K

[issue2357] sys.exc_{type, values, traceback} should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Using sys.exc_{type,values,traceback} should raise a Py3K warning. -- components: Interpreter Core keywords: 26backport messages: 63732 nosy: brett.cannon priority: immediate severity: normal status: open title:

[issue2358] Using sys.exc_clear should raise a Py3K warning

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Using sys.exc_clear should raise a Py3K warning. -- components: Interpreter Core keywords: 26backport messages: 63733 nosy: brett.cannon priority: immediate severity: normal status: open title: Using sys.exc_clear should raise a Py3K

[issue2342] Comparing between disparate types should raise a Py3K warning

2008-03-17 Thread Steven Bethard
Steven Bethard [EMAIL PROTECTED] added the comment: I'll start looking at this. -- nosy: +bethard __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2342 __ ___

[issue2359] A Py3K warning for array.array.{read,write} is needed

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: array.{read,write} from the array module should raise at least a Py3K warning, if not a DeprecationWarning. -- components: Interpreter Core keywords: 26backport messages: 63735 nosy: brett.cannon priority: immediate severity: normal

[issue2360] Fixer for itertools.imap() - map()

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer for converting itertools.imap() to - map() is needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63736 nosy: brett.cannon, collinwinter priority: immediate severity:

[issue2361] Fixer for itertools.ifilter() - filter()

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer to go from itertools.ifilter() to filter() is needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63737 nosy: brett.cannon, collinwinter priority: immediate severity:

[issue2362] Fixer for itertools.izip() - zip()

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer for itertools.izip() to zip() is needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63738 nosy: brett.cannon, collinwinter priority: immediate severity: normal status:

[issue2363] Fixer for itertools.ifilterfalse() - itertools.filterfalse()

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer is needed to go from itertools.ifilterfalse() to itertools.filterfalse(). -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63739 nosy: brett.cannon, collinwinter priority:

[issue2364] Patch to make 2to3 testing easier

2008-03-17 Thread David Wolever
New submission from David Wolever [EMAIL PROTECTED]: This patch makes it easier to run tests in the 2to3 suite. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) files: 2to3tester.patch keywords: patch messages: 63740 nosy: David Wolever, collinwinter severity:

[issue2091] file accepts 'rU+' as a mode

2008-03-17 Thread Jeff Balogh
Jeff Balogh [EMAIL PROTECTED] added the comment: Attaching a patch that checks for '+' in the mode string, updates the docs, and tests bad mode strings. -- keywords: +patch nosy: +jbalogh Added file: http://bugs.python.org/file9697/issue2091.diff __

[issue2365] Fixer for filter(None, ...) - filter(bool, ...)

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer to go from filter(None, ..) to filter(bool, ..) is needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63742 nosy: brett.cannon, collinwinter priority: immediate

[issue2366] Fixer for new metaclass syntax is needed

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: * new metaclass syntax (removing __metaclass__?) - __metaclass__ = type at global level disappear - __metaclass__ = anything else should generate warning - __metaclass__ = something within a class should use new syntax - class

[issue2367] Fixer to handle new places where parentheses are needed

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: Py3K has some places where parentheses are now required (e.g., ``[x for x in 1, 2]`` to ``[x for x in (1, 2)``). A fixer is needed to handle the conversion. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool)

[issue2368] Backport __builtin__ to 'builtins'

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: 'builtins' needs to be added as a module for __builtin__. A fixer will also be needed. -- components: Interpreter Core keywords: 26backport messages: 63745 nosy: brett.cannon priority: immediate severity: normal status: open title:

[issue2356] sys.exitfunc should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Brett Cannon [EMAIL PROTECTED] added the comment: A fixer to use the atexit module is needed. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2356 __ ___ Python-bugs-list mailing

[issue2354] cmp argument to list.sort()/sorted() should raise a Py3K warning

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: I've got this one. -- assignee: - rhettinger nosy: +rhettinger __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2354 __

[issue2369] Fixer for new integer literals are needed

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer(s) to handle the new integer literals are needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63749 nosy: brett.cannon, collinwinter priority: immediate severity:

[issue2357] sys.exc_{type, values, traceback} should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Brett Cannon [EMAIL PROTECTED] added the comment: A fixer to use sys.exc_info is needed. __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2357 __ ___ Python-bugs-list mailing list

[issue2339] Backport intern() - sys.intern()

2008-03-17 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Here's a patch which moves intern to sysmodule.c, adds a Py3k warning, updates the docs, and moves the tests. -- keywords: +patch nosy: +benjamin.peterson Added file: http://bugs.python.org/file9698/backport_sys_intern.patch

[issue2370] operator.{isCallable,sequenceIncludes} needs a fixer

2008-03-17 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: A fixer for operator.{isCallable,sequenceIncludes} similar to the one for callable() is needed. -- assignee: collinwinter components: 2to3 (2.x to 3.0 conversion tool) keywords: 26backport messages: 63751 nosy: brett.cannon,

[issue2365] Fixer for filter(None, ...) - filter(bool, ...)

2008-03-17 Thread Raymond Hettinger
Changes by Raymond Hettinger [EMAIL PROTECTED]: -- assignee: collinwinter - rhettinger nosy: +rhettinger __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2365 __ ___

[issue2322] Clean up getargs.c and its formatting possibilities

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2322 __ ___ Python-bugs-list mailing list

[issue2327] Backport keyword-only arguments to 2.6

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2327 __ ___ Python-bugs-list mailing list

[issue2331] Backport parameter annotations

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2331 __ ___ Python-bugs-list mailing list

[issue2332] Renaming of attributes on functions need to be backported.

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2332 __ ___ Python-bugs-list mailing list

[issue2333] Backport dict comprehensions

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2333 __ ___ Python-bugs-list mailing list

[issue2334] Backport set comprehensions

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2334 __ ___ Python-bugs-list mailing list

[issue2335] Backport set literals

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2335 __ ___ Python-bugs-list mailing list

[issue2338] Backport reload() moving to imp.reload()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2338 __ ___ Python-bugs-list mailing list

[issue2337] Backport oct() and hex() to use __index__

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2337 __ ___ Python-bugs-list mailing list

[issue2340] Backport PEP 3132 (extended iterable unpacking)

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2340 __ ___ Python-bugs-list mailing list

[issue2291] Raise a Py3K warning for catching non-BaseException exceptions

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2291 __ ___ Python-bugs-list mailing list

[issue2341] Raise a Py3K warning when raise non-BaseException exceptions

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2341 __ ___ Python-bugs-list mailing list

[issue2336] Backport PEP 3114 (__next__)

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2336 __ ___ Python-bugs-list mailing list

[issue2366] Fixer for new metaclass syntax is needed

2008-03-17 Thread Jack Diederich
Changes by Jack Diederich [EMAIL PROTECTED]: -- nosy: +jackdied __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2366 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue2343] Raise a Py3K warning when using a float where an int is expected

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2343 __ ___ Python-bugs-list mailing list

[issue2344] Using an iteration variable outside a list comprehension needs a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2344 __ ___ Python-bugs-list mailing list

[issue2364] Patch to make 2to3 testing easier

2008-03-17 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: Thanks! Committed as r61456 -- nosy: +loewis resolution: - accepted status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2364 __

[issue2345] Using an exception variable outside an 'except' clause should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2345 __ ___ Python-bugs-list mailing list

[issue2346] Py3K warn against using __members__

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2346 __ ___ Python-bugs-list mailing list

[issue2359] A Py3K warning for array.array.{read,write} is needed

2008-03-17 Thread Jeff Balogh
Jeff Balogh [EMAIL PROTECTED] added the comment: I've got this one. -- nosy: +jbalogh __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2359 __ ___ Python-bugs-list

[issue2347] Py3K warn for using __methods__

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2347 __ ___ Python-bugs-list mailing list

[issue2348] Py3K warn using file.whitespace

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2348 __ ___ Python-bugs-list mailing list

[issue2349] Py3K warn against assigning to True/False

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2349 __ ___ Python-bugs-list mailing list

[issue2350] Warn against importing 'exceptions'

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2350 __ ___ Python-bugs-list mailing list

[issue2351] Using __(get|set|del)slice__ needs a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2351 __ ___ Python-bugs-list mailing list

[issue2352] Use of __oct__/__hex__ should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2352 __ ___ Python-bugs-list mailing list

[issue2353] Use of file.xreadlines() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2353 __ ___ Python-bugs-list mailing list

[issue2355] Using buffer() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2355 __ ___ Python-bugs-list mailing list

[issue2358] Using sys.exc_clear should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2358 __ ___ Python-bugs-list mailing list

[issue2342] Comparing between disparate types should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2342 __ ___ Python-bugs-list mailing list

[issue2360] Fixer for itertools.imap() - map()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2360 __ ___ Python-bugs-list mailing list

[issue2361] Fixer for itertools.ifilter() - filter()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2361 __ ___ Python-bugs-list mailing list

[issue2362] Fixer for itertools.izip() - zip()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2362 __ ___ Python-bugs-list mailing list

[issue2341] Raise a Py3K warning when raise non-BaseException exceptions

2008-03-17 Thread Alexander Belopolsky
Alexander Belopolsky [EMAIL PROTECTED] added the comment: See attached. I don't know how to write unit tests for -3 warnings. -- keywords: +patch nosy: +belopolsky Added file: http://bugs.python.org/file9699/issue2341.diff __ Tracker [EMAIL PROTECTED]

[issue2359] A Py3K warning for array.array.{read,write} is needed

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2359 __ ___ Python-bugs-list mailing list

[issue2366] Fixer for new metaclass syntax is needed

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2366 __ ___ Python-bugs-list mailing list

[issue2365] Fixer for filter(None, ...) - filter(bool, ...)

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2365 __ ___ Python-bugs-list mailing list

[issue2370] operator.{isCallable,sequenceIncludes} needs a fixer

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2370 __ ___ Python-bugs-list mailing list

[issue2339] Backport intern() - sys.intern()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2339 __ ___ Python-bugs-list mailing list

[issue2369] Fixer for new integer literals are needed

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2369 __ ___ Python-bugs-list mailing list

[issue2354] cmp argument to list.sort()/sorted() should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent versions: +Python 2.6 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2354 __ ___

[issue2357] sys.exc_{type, values, traceback} should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2357 __ ___ Python-bugs-list mailing list

[issue2356] sys.exitfunc should raise a Py3K warning

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2356 __ ___ Python-bugs-list mailing list

[issue2368] Backport __builtin__ to 'builtins'

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2368 __ ___ Python-bugs-list mailing list

[issue2367] Fixer to handle new places where parentheses are needed

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2367 __ ___ Python-bugs-list mailing list

[issue2363] Fixer for itertools.ifilterfalse() - itertools.filterfalse()

2008-03-17 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: immediate - urgent __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2363 __ ___ Python-bugs-list mailing list

[issue2368] Backport __builtin__ to 'builtins'

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: Guido, is this something you really want to do? To me, it just makes 2.6 more confusing to learn and it doesn't do much in the way of simplifying the transition to 3.0. The 2-to-3 tool can take care of this trivially. -- assignee:

[issue1202] zlib.crc32() and adler32() return value

2008-03-17 Thread Gregory P. Smith
Gregory P. Smith [EMAIL PROTECTED] added the comment: fixed. 3.0 always returns unsigned. 2.6 always returns signed, 2**31...2**31-1 come back as negative integers. trunk r61449 branches/py3k r61459 -- resolution: - fixed status: open - closed __

[issue2342] Comparing between disparate types should raise a Py3K warning

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: Can the be done without making comparisons more expensive across the board. It will be bad news for Py2.6 if every single comparison gets slowed down. -- nosy: +rhettinger __ Tracker [EMAIL

[issue2341] Raise a Py3K warning when raise non-BaseException exceptions

2008-03-17 Thread Alexander Belopolsky
Alexander Belopolsky [EMAIL PROTECTED] added the comment: While writing the patch, I noticed that /* Normalize to raise class, instance */ comment was misplaced. Please consider a minor patch that fixes that. Added file: http://bugs.python.org/file9700/issue2341-minor.diff

[issue2360] Fixer for itertools.imap() - map()

2008-03-17 Thread David Wolever
David Wolever [EMAIL PROTECTED] added the comment: I'll take this one (and the next few dealing with itertools) -- nosy: +David Wolever __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2360 __

[issue2371] Patch for catching exceptions that do not inherit from BaseException

2008-03-17 Thread Taek Joo Kim
New submission from Taek Joo Kim [EMAIL PROTECTED]: With this patch it prints warning message for catching exceptions that don't inherit from BaseException when -3 flag is used. -- components: Interpreter Core files: catchexc.patch keywords: patch messages: 63761 nosy: taicki severity:

[issue2368] Backport __builtin__ to 'builtins'

2008-03-17 Thread Benjamin Peterson
Changes by Benjamin Peterson [EMAIL PROTECTED]: -- nosy: +benjamin.peterson __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2368 __ ___ Python-bugs-list mailing list

[issue2282] TextIOWrapper.seekable() always returns False

2008-03-17 Thread Ka-Ping Yee
Ka-Ping Yee [EMAIL PROTECTED] added the comment: Patch committed. -- resolution: - accepted status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2282 __

[issue2323] Make structseq's API look more like a nametuple.

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: Closing as a duplicate of issue 1820. I had been working on this, but there are limits to it. The constructors are completely different so not all of the API can be synced. The __repr__ method is already synced-up. All that is still

[issue2366] Fixer for new metaclass syntax is needed

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: Does the old way still work in 3.0? If so, I don't think we should have a fixer. -- nosy: +rhettinger __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2366 __

[issue2349] Py3K warn against assigning to True/False

2008-03-17 Thread Raymond Hettinger
Raymond Hettinger [EMAIL PROTECTED] added the comment: I would like to review the patch on this one. I think it should limit itself to the True and False in builtin. It would be *very* expensive to check for every assignment in every possible namespace. -- nosy: +rhettinger

[issue1274] doctest fails to run file based tests with 8bit paths

2008-03-17 Thread Ilan Schnell
Ilan Schnell [EMAIL PROTECTED] added the comment: Bug is most likely platform specific. Can someone suggest how this should be handled on multiple platforms? Mike, can you report on which platform you encountered the bug on? Can you provide a script that reproduces the bug? On Mac OS 10.4,

[issue2301] [Py3k] No text shown when SyntaxError (when not UTF8)

2008-03-17 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: The original issue is now fixed in r61462. Please open another issue for the case of regular exceptions. -- resolution: - fixed status: open - closed __ Tracker [EMAIL PROTECTED]

[issue2349] Py3K warn against assigning to True/False

2008-03-17 Thread Brett Cannon
Brett Cannon [EMAIL PROTECTED] added the comment: On Mon, Mar 17, 2008 at 3:41 PM, Raymond Hettinger [EMAIL PROTECTED] wrote: Raymond Hettinger [EMAIL PROTECTED] added the comment: I would like to review the patch on this one. I think it should limit itself to the True and False in

[issue2350] Warn against importing 'exceptions'

2008-03-17 Thread Douglas Mayle
Douglas Mayle [EMAIL PROTECTED] added the comment: I ran python through a debugger and found that the exceptions module is imported automatically at load time. Because of this, when import exceptions is parsed, the module is already loaded, and PyImport_Import is not called. In order to

[issue1747858] chown broken on 64bit

2008-03-17 Thread Gregory P. Smith
Gregory P. Smith [EMAIL PROTECTED] added the comment: i'll take a look at this during the sprint. -- assignee: - gregory.p.smith nosy: +gregory.p.smith _ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1747858

[issue2371] Patch for catching exceptions that do not inherit from BaseException

2008-03-17 Thread Alexander Belopolsky
Alexander Belopolsky [EMAIL PROTECTED] added the comment: This belongs to issue2291. -- nosy: +belopolsky, brett.cannon __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2371 __

[issue2353] Use of file.xreadlines() should raise a Py3K warning

2008-03-17 Thread Douglas Mayle
Douglas Mayle [EMAIL PROTECTED] added the comment: I'm on it... -- nosy: +douglas __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2353 __ ___ Python-bugs-list mailing

[issue2290] [PATCH] Update Lib/distutils/sysconfig.py to handle x64 Windows builds living in pcbuild/amd64.

2008-03-17 Thread Martin v. Löwis
Martin v. Löwis [EMAIL PROTECTED] added the comment: This patch is fine, please apply. -- assignee: - Trent.Nelson resolution: - accepted __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2290 __

<    1   2   3   4   5   6   >