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: TypeError: get() got an unexpected keyword argument 'vars'
Type: behavior Stage: resolved
Components: 2to3 (2.x to 3.x conversion tool) Versions: Python 3.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: cis-muzahid, eric.smith, terry.reedy
Priority: normal Keywords:

Created on 2021-03-31 11:05 by cis-muzahid, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg389900 - (view) Author: Eric V. Smith (eric.smith) * (Python committer) Date: 2021-03-31 14:15
Please provide example code that we can run which demonstrates the problem.
msg404547 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-10-20 23:57
I presume something like this:
>>> {}.get(vars=1)
Traceback (most recent call last):
  File "<pyshell#0>", line 1, in <module>
    {}.get(vars=1)
TypeError: get() takes no keyword arguments  # 3.8+

Report is 3.7.
History
Date User Action Args
2022-04-11 14:59:43adminsetgithub: 87844
2021-10-20 23:59:39terry.reedysettype: behavior
2021-10-20 23:57:37terry.reedysetresolution: rejected -> not a bug

messages: + msg404547
nosy: + terry.reedy
2021-10-20 23:04:38iritkatrielsetstatus: open -> closed
resolution: rejected
stage: resolved
2021-03-31 14:15:34eric.smithsetnosy: + eric.smith
messages: + msg389900
2021-03-31 11:05:45cis-muzahidcreate