[issue7319] Silence DeprecationWarning by default

2010-06-27 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Merged the lot in r82314. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-04-25 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: -Q now works like -3 by causing the DeprecationWarning silencing to be skipped. Committed in r80492. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org

[issue7319] Silence DeprecationWarning by default

2010-04-25 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: This still hasn't been ported to py3. -- resolution: fixed - status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319

[issue7319] Silence DeprecationWarning by default

2010-04-25 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Making this a 3.2 issue now. -- versions: +Python 3.2 -Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-04-25 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Brett, by the way, you had spurious changes in subprocess in your last commit. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319

[issue7319] Silence DeprecationWarning by default

2010-04-25 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: I'm tired of svn. I swear I made sure I didn't list that file in what was changed. Anyway, it's been reverted in r80496. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319

[issue7319] Silence DeprecationWarning by default

2010-04-23 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- priority: critical - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___ ___

[issue7319] Silence DeprecationWarning by default

2010-04-03 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Lowering priority. -- priority: release blocker - critical ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-03-16 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: The silencing of DeprecationWarnings should also be advertised, so that who writes the code knows that now -Wd should be used explicitly while testing the code. A warning in the What's new would be a good place where to start. --

[issue7319] Silence DeprecationWarning by default

2010-03-06 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: The -Qwarn/-Qwarnall options are unexpectedly silenced in 2.7. -- nosy: +flox stage: - commit review versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org

[issue7319] Silence DeprecationWarning by default

2010-03-06 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: So it isn't really unexpected as -Q uses DeprecationWarning which is being silenced by default. So either -Q has to turn DeprecationWarning back on or a new subclass of DeprecationWarning (say IntegerDivisionWarning) needs to be introduced that

[issue7319] Silence DeprecationWarning by default

2010-03-06 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Posted to python-dev to solicit feedback on how to handle this. -- stage: commit review - needs patch versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319

[issue7319] Silence DeprecationWarning by default

2010-02-02 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Has enough time elapsed yet for py3k merging? -- nosy: +benjamin.peterson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-02-02 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: On Tue, Feb 2, 2010 at 19:00, Benjamin Peterson rep...@bugs.python.org wrote: Benjamin Peterson benja...@python.org added the comment: Has enough time elapsed yet for py3k merging? Sure. I will try to do it before or at PyCon. --

[issue7319] Silence DeprecationWarning by default

2010-01-09 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Committed in r77402. I am going to wait to see if any doc changes occur before I commit in py3k. For historical reasons, here is the thread that hashed out the reasonsing: http://mail.python.org/pipermail/stdlib-sig/2009-November/000789.html

[issue7319] Silence DeprecationWarning by default

2010-01-07 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: Removed file: http://bugs.python.org/file15743/warnings_rst_reword.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-01-06 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: The wording of the documentation flows and is arranged better than before. However, there is a test failure: test_exceptions.testDeprecatedMessageAttribute depends on the deprecation warning always occuring. @unittest.skipIf(DeprecationWarning

[issue7319] Silence DeprecationWarning by default

2010-01-06 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: Removed file: http://bugs.python.org/file15758/silence_deprecations.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-01-06 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Latest patch adds fixes to test_exceptions test_ascii_formatd to pass. -- Added file: http://bugs.python.org/file15770/silence_deprecations.diff ___ Python tracker rep...@bugs.python.org

[issue7319] Silence DeprecationWarning by default

2010-01-05 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- assignee: - brett.cannon ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___ ___ Python-bugs-list

[issue7319] Silence DeprecationWarning by default

2010-01-05 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: Removed file: http://bugs.python.org/file15731/silence_deprecations.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-01-05 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: Thanks for the feedback, everyone. The tabs have been fixed in the source. As for the docs, I moved the explanation as to why the warnings are silenced to the end of the section and chopped the compilation reasoning as it is not the critical

[issue7319] Silence DeprecationWarning by default

2010-01-04 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Just FYI, there are tabs in your spaces in _warnings.c. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2010-01-04 Thread Ezio Melotti
Ezio Melotti ezio.melo...@gmail.com added the comment: The second paragraph (There is also the issue...) is IMO redundant, especially the third sentence (But because Python is an interpreted language...). -- nosy: +ezio.melotti ___ Python tracker

[issue7319] Silence DeprecationWarning by default

2010-01-04 Thread Brian Curtin
Brian Curtin cur...@acm.org added the comment: warnings_rst_reword.diff proposes slightly different wording on the Updating Code... section of documentation. -- nosy: +brian.curtin Added file: http://bugs.python.org/file15743/warnings_rst_reword.diff

[issue7319] Silence DeprecationWarning by default

2010-01-03 Thread Brett Cannon
Brett Cannon br...@python.org added the comment: New patch that includes proposed doc changes. -- Added file: http://bugs.python.org/file15731/silence_deprecations.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319

[issue7319] Silence DeprecationWarning by default

2010-01-03 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: Removed file: http://bugs.python.org/file15326/silence_deprecations.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7319 ___

[issue7319] Silence DeprecationWarning by default

2009-11-13 Thread Brett Cannon
New submission from Brett Cannon br...@python.org: This issue is to track the silencing of DeprecationWarning by default. To start a patch has been attached against trunk which silences DeprecationWarning. Documentation changes are still needed, though. -- components: Interpreter Core