This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Deprecation warnings in lib\compiler\ast.py
Type: compile error Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, edreamleo
Priority: normal Keywords:

Created on 2008-12-04 17:51 by edreamleo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg76904 - (view) Author: Edward K Ream (edreamleo) * Date: 2008-12-04 17:51
Python 2.6 final on Windows XP gives following warnings with -3 option:

c:\python26\lib\compiler\ast.py:54: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:434: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:488: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:806: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:896: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:926: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:998: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:1098: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\ast.py:1173: SyntaxWarning: tuple parameter
unpacking has been removed in 3.x
  def __init__(self, (left, right), lineno=None):
c:\python26\lib\compiler\pycodegen.py:903: SyntaxWarning: tuple
parameter unpacking has been removed in 3.x

Edward
--------------------------------------------------------------------
Edward K. Ream email: edreamleo@gmail.com
Leo: http://webpages.charter.net/edreamleo/front.html
--------------------------------------------------------------------
msg76916 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2008-12-04 18:33
Considering the entire compiler package is not in 3.0 it is not worth
fixing this. Closing as wont fix.
msg76917 - (view) Author: Edward K Ream (edreamleo) * Date: 2008-12-04 19:17
On Thu, Dec 4, 2008 at 12:33 PM, Brett Cannon <report@bugs.python.org> wrote:
>
> Brett Cannon <brett@python.org> added the comment:
>
> Considering the entire compiler package is not in 3.0 it is not worth
> fixing this. Closing as wont fix.

Thanks for this clarification.

Edward
--------------------------------------------------------------------
Edward K. Ream email: edreamleo@gmail.com
Leo: http://webpages.charter.net/edreamleo/front.html
--------------------------------------------------------------------
History
Date User Action Args
2022-04-11 14:56:42adminsetgithub: 48781
2008-12-04 19:17:27edreamleosetmessages: + msg76917
2008-12-04 18:33:00brett.cannonsetstatus: open -> closed
resolution: wont fix
messages: + msg76916
nosy: + brett.cannon
2008-12-04 17:51:22edreamleocreate