[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-03 Thread Ezio Melotti
Ezio Melotti added the comment: I fixed the deprecation warnings on 2.6 in r83519, r83576-r83579, r83620-r83622, r83627-r83632, r83635, r83637-83642, r83652-83656, r83658, r83687. Now the test suite should pass with and without -3 -Wd with no errors and no warnings (except an import warning o

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I am removing this as a release blocker given all of Ezio's great work to get the test suite clean with -3. I will leave it up to him to actually close the issue once the work is complete. It no longer needs to block 2.6.6. -- priority: release blo

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-03 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: Hi Ezio, what's the status on this issue for 2.6.6rc1? -- ___ Python tracker ___ ___ Python-bugs-li

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-08-01 Thread Ezio Melotti
Changes by Ezio Melotti : -- priority: critical -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-07-31 Thread Ezio Melotti
Ezio Melotti added the comment: Barry, is it OK if I backport this to 2.6 before the rc1? -- status: closed -> open versions: +Python 2.6 ___ Python tracker ___ _

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-07-31 Thread Florent Xicluna
Florent Xicluna added the comment: This issue is over, except for #7723 which is tracked separately. -- dependencies: -sqlite only accept buffer() for BLOB objects(input/output) resolution: accepted -> fixed stage: patch review -> committed/rejected status: open -> closed

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-04-03 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- priority: release blocker -> critical ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-04-02 Thread Florent Xicluna
Florent Xicluna added the comment: Additional fixes: r79576, r79577, r79578 (idlelib package and some test modules) -- ___ Python tracker ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-04-01 Thread Florent Xicluna
Florent Xicluna added the comment: Fixed with r79558, except test_multiprocessing. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-04-01 Thread Florent Xicluna
Florent Xicluna added the comment: Other py3k warnings: lib\distutils\util.py:209: DeprecationWarning: apply() not supported in 3.x; use func(*args, **kwargs) return apply(os.path.join, paths) lib\distutils\command\build_ext.py:679: DeprecationWarning: apply() not supported in 3.x; use fun

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-31 Thread Florent Xicluna
Florent Xicluna added the comment: Now the "-Wd" and "-3" flags are active on some buildbots. And the first failures ... Need to backport fixes from py3k branch for: - cgitb "SyntaxWarning: tuple parameter unpacking has been removed in 3.x" - idlelib "reduce() not supported in 3.x; use functoo

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-21 Thread Florent Xicluna
Florent Xicluna added the comment: other py3k warnings silenced with r79187 r79188 r79189 -- ___ Python tracker ___ ___ Python-bugs-li

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-20 Thread Florent Xicluna
Florent Xicluna added the comment: More warnings silenced with r79165. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-18 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Florent you are right, good catch. I can not use context managers because "with" is invalid syntax in python 2.3 and 2.4, that I must support for a while. I have implemented a context manager manually, following the description in PEP 343. This change is ava

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-18 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/o

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-18 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Florent you are right, good catch. I can not use context managers because "with" is invalid syntax in python 2.3 and 2.4, that I must support for a while. I have implemented a context manager manually, following the description in PEP 343. This change is ava

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-17 Thread Ezio Melotti
Ezio Melotti added the comment: I took part of Florent latest patch, changed a few things and committed it in r79023. -- ___ Python tracker ___ _

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-17 Thread Florent Xicluna
Florent Xicluna added the comment: > Checking the pybsddb 4.8.4devel with current trunk I still see this: It is because the "test_early_close" module calls resetwarnings(). It defeats the filter in the "threading" module. You may change the test case with a context manager: with warnings.ca

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-15 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Checking the pybsddb 4.8.4devel with current trunk I still see this: """ Berkeley DB 4.8.26: (December 18, 2009) bsddb.db.version(): (4, 8, 26) bsddb.db.__version__: 4.8.4devel1 bsddb.db.cvsid: $Id: _bsddb.c,v 6408a812f035 2010/03/15 19:15:06 jcea $ py

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Florent Xicluna added the comment: Silence the last warnings, using check_py3k_warnings. But we could provide a smaller patch, if #7832 is fixed before. -- dependencies: +assertSameElements([0, 1, 1], [0, 0, 1]) does not fail Added file: http://bugs.python.org/file16507/issue7092_witho

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16113/issue7092_test_support_v2.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16076/issue7092_py3k_warnings_noargs_v2.diff ___ Python tracker ___ ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16075/issue7092_py3k_warnings_args_v2.diff ___ Python tracker ___ ___ Py

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-03 Thread Florent Xicluna
Florent Xicluna added the comment: The enhancement proposed on #7849 should be considered before reviewing the last 2 patches. If #7849 is accepted, these patches will need update. -- ___ Python tracker _

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-03 Thread Florent Xicluna
Changes by Florent Xicluna : -- dependencies: +Improve "test_support.check_warnings()" ___ Python tracker ___ ___ Python-bugs-list mail

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Changes by Ezio Melotti : Removed file: http://bugs.python.org/file16048/issue7092_syntax_fixes.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Ezio Melotti added the comment: Applied the syntax fixes in r77942. -- assignee: -> ezio.melotti ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Florent Xicluna added the comment: Docstring added. Notes: - there's 2 categories of -3 warnings: SyntaxWarning and DeprecationWarning. - AFAICT, the WarningsRecorder needs "catch_warnings(record=True)". And in such case, *all* warnings are silenced. -- Added file: http://bugs.pyt

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16044/issue7092_test_support.py ___ Python tracker ___ ___ Python-bugs-li

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Ezio Melotti added the comment: In issue7092_test_support: 1) silence_py3k_warning should have a docstring that explain what the function does and what filters should be, possibly including an example; 2) I'd use "if not filters:" instead of "if filters == ():"; 3) are there cases where the thi

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Florent Xicluna added the comment: test_unittest fixed in r77911. See also #7837. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16096/issue7092_unittest.py ___ Python tracker ___ ___ Python-bugs-list m

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Changes by Ezio Melotti : Removed file: http://bugs.python.org/file16053/issue7092_test_exceptions_v2.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Ezio Melotti added the comment: test_exceptions and test_pep352 fixed in r77913. -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Florent Xicluna added the comment: Proposed patch to filter out some deprecated comparisons in "unittest" module. -- Added file: http://bugs.python.org/file16096/issue7092_unittest.py ___ Python tracker ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Ezio Melotti
Ezio Melotti added the comment: bsddb is now fixed in r77910. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16065/issue7092_bsddb3v2.diff ___ Python tracker ___ ___ Python-bugs-list

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-02-02 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16043/issue7092_bsddb3.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-31 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16076/issue7092_py3k_warnings_noargs_v2.diff ___ Python tracker ___ ___ Py

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-31 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16075/issue7092_py3k_warnings_args_v2.diff ___ Python tracker ___ ___ Pyth

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-31 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16050/issue7092_py3k_warnings_args.diff ___ Python tracker ___ ___ Python

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-31 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16051/issue7092_py3k_warnings_noargs.diff ___ Python tracker ___ ___ Pyt

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-31 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16047/issue7092_Wd_warnings.diff ___ Python tracker ___ ___ Python-bugs-l

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-30 Thread Ezio Melotti
Ezio Melotti added the comment: The patch for bsddb3 looks good, however there's no reason (IMHO) to keep in the tests those "if sys.version_info[0] < 3:" or replace the version with (2,6) since we are already using things like assertIn that are 2.7-only. I changed it only to avoid warnings,

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-30 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16049/issue7092_silence_imports.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-30 Thread Florent Xicluna
Florent Xicluna added the comment: Cleanup test_exceptions: - removed "filterwarnings" for "testSlicing" -- Added file: http://bugs.python.org/file16053/issue7092_test_exceptions_v2.diff ___ Python tracker ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-30 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16046/issue7092_test_exceptions.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Ezio Melotti
Ezio Melotti added the comment: Warnings for imports of deprecated modules are now silenced in r77841 (patch 6 / silence_imports.diff). -- ___ Python tracker ___ ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Florent Xicluna added the comment: Each patch can be reviewed and committed separately (except the last 2). [patch 1] bsddb3.diff – related to Bsddb3 [patch 2] test_support.diff – new helper "silence_py3k_warnings()" [patch 3] test_exceptions.diff – "test_pep352" and "test_exceptions" [patch 4]

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16051/issue7092_py3k_warnings_noargs.diff ___ Python tracker ___ ___ Python

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16050/issue7092_py3k_warnings_args.diff ___ Python tracker ___ ___ Python-b

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16049/issue7092_silence_imports.diff ___ Python tracker ___ ___ Python-bugs

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Jean-Paul Calderone
Changes by Jean-Paul Calderone : -- nosy: -exarkun ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16048/issue7092_syntax_fixes.diff ___ Python tracker ___ ___ Python-bugs-li

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16047/issue7092_Wd_warnings.diff ___ Python tracker ___ ___ Python-bugs-lis

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16046/issue7092_test_exceptions.diff ___ Python tracker ___ ___ Python-bugs

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15996/issue7092_filterwarnings_v3.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15995/issue7092_check_warnings_v3.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15994/issue7092_syntax_imports_v3.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15925/issue7092_json.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16044/issue7092_test_support.py ___ Python tracker ___ ___ Python-bugs-list

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16043/issue7092_bsddb3.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file16042/issue7269_bsddb3.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file16042/issue7269_bsddb3.diff ___ Python tracker ___ ___ Python-bugs-list mai

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Florent Xicluna
Florent Xicluna added the comment: Thank you for the review and your comments. Here, the replies. > > Amaury review - msg98491 > > Here is my review of issue7092_syntax_imports_v3.diff: > > - test_itertools.py: please replace > [tuple([arg[i] if i < len(arg) else None for arg in args]) >

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-29 Thread Ezio Melotti
Ezio Melotti added the comment: A couple of comments about issue7092_syntax_imports_v3.diff too: 1) in test_copy you remove (k,v), but left the name 'k' even if now it represent the item and not the key; 2) in test_fractions you should probably use self.fail() instead of an assert; 3) on test_f

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-28 Thread Ezio Melotti
Ezio Melotti added the comment: Here's mine about issue7092_check_warnings_v3.diff: 1) test_callable should keep testing callable() and the warnings should be caught; 2) in test_bsddb3 the problems should be correct in the module if possible and worth it (the module is deprecated); 3) next to

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-28 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Here is my review of issue7092_syntax_imports_v3.diff: - test_itertools.py: please replace [tuple([arg[i] if i < len(arg) else None for arg in args]) for i in range(max(map(len, args)))] by something more readable (nested for loops for exam

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-26 Thread Ezio Melotti
Ezio Melotti added the comment: json is now fixed in r77755. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Florent Xicluna added the comment: Re-uploaded after fixes for #7737. To remove all "-3" warnings: - apply the 4 patches - fix SQLite "buffer()" warnings (issue #7223) -- stage: committed/rejected -> patch review Added file: http://bugs.python.org/file15996/issue7092_filterwarnings_v

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15995/issue7092_check_warnings_v3.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15994/issue7092_syntax_imports_v3.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15788/issue7092_check_warnings.diff ___ Python tracker ___ ___ Python-bug

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15929/issue7092_syntax_imports_v2.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-24 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15928/issue7092_filterwarnings_v2.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Florent Xicluna added the comment: Re-uploaded "syntax_imports_v2" with patch for test_bsddb.py -- Added file: http://bugs.python.org/file15929/issue7092_syntax_imports_v2.diff ___ Python tracker __

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15927/issue7092_syntax_imports_v2.diff ___ Python tracker ___ ___ Python-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15928/issue7092_filterwarnings_v2.diff ___ Python tracker ___ ___ Python-bu

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Florent Xicluna added the comment: Patches updated against trunk. -- Added file: http://bugs.python.org/file15927/issue7092_syntax_imports_v2.diff ___ Python tracker ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15789/issue7092_filterwarnings.diff ___ Python tracker ___ ___ Python-bug

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15787/issue7092_syntax_imports.diff ___ Python tracker ___ ___ Python-bug

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15925/issue7092_json.diff ___ Python tracker ___ ___ Python-bugs-list maili

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15794/issue7092_json_sqlite_v2.diff ___ Python tracker ___ ___ Python-bug

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-17 Thread Florent Xicluna
Florent Xicluna added the comment: I've created issue7723 for sqlite3 module using buffer(). It's not so simple. -- dependencies: +sqlite only accept buffer() for BLOB objects (input/output) ___ Python tracker

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-12 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15814/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-09 Thread Brett Cannon
Brett Cannon added the comment: The documentation is still accurate. The translation is literal so there no shift except where the unpacking exception occurs. On Sat, Jan 9, 2010 at 20:13, Éric Araujo wrote: > > Éric Araujo added the comment: > > Hello > > I read the diff for revision 7731

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-09 Thread Éric Araujo
Éric Araujo added the comment: Hello I read the diff for revision 77310 and noticed that arguments with parens (I mean things like ``def spam((x, y))``, forgot the name) were replaced by grab-all arguments that are unpacked later (``def spam(x_y)``). I was wondering whether the documentation fo

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-09 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- priority: deferred blocker -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: This can wait. -- priority: release blocker -> deferred blocker ___ Python tracker ___ ___ Python

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file15793/issue7092_regrtest_clean.diff ___ Python tracker ___ ___ Python-bugs

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file15773/issue7092_cpickle.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: issue7092_cpickle.diff was committed to trunk and 2.6. -- ___ Python tracker ___ ___ Python-bugs-lis

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15793/issue7092_regrtest_clean.diff ___ Python tracker ___ ___ Python-bugs-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : Removed file: http://bugs.python.org/file15790/issue7092_json_sqlite.diff ___ Python tracker ___ ___ Python-bugs-l

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: About issue7092_json_sqlite.diff: if json produces py3k warnings in normal use (does it?), the warnings should be suppressed in json itself, not in regrtest.py. -- ___ Python tracker

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Florent Xicluna added the comment: I split the Big Patch™ into pieces. It should be easier to review and merge. - issue7092_syntax_imports.diff --> Only syntax and import_module(m, deprecated=True) - issue7092_check_warnings.diff --> Use test.test_support.check_warnings() - issue7092

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15789/issue7092_filterwarnings.diff ___ Python tracker ___ ___ Python-bugs-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15788/issue7092_check_warnings.diff ___ Python tracker ___ ___ Python-bugs-

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-01-08 Thread Florent Xicluna
Changes by Florent Xicluna : Added file: http://bugs.python.org/file15787/issue7092_syntax_imports.diff ___ Python tracker ___ ___ Python-bugs-

  1   2   >