Daily updates from Odoo
Friday, September 13, 2019
1 change
Enhancements to existing features
This update replaces an outdated internal Python function used to inspect code behavior with its modern supported equivalent. It helps keep the website and core platform compatible with current and future Python versions, reducing maintenance risk without changing day-to-day user workflows.
Original PR description
[PEP-594] is deprecating a bunch of modules/functions, as part of the cleanup related to these modules, we also dealing with other deprecated modules/functions. The `inspect.getargspec` returns information about python functions, that function has been deprecated in python3 and replaced by `inspect.getfullargspec`. The later supports all python3 function signature including keyword-only and annotations. Task: 2003936