[issue44985] Inconsistent returned value of inspect.getfullargspec(object.__init__).

2021-08-24 Thread Mehrzad
Mehrzad added the comment: My suggestion: Although both `object(...)` and `object.__init__(...)`, run through the same method, they are semantically and intentionally different. 1. `ObjectType(...)`; implicit call of `object.__init__`: The user intends to create an object. If extra

[issue44985] Inconsistent returned value of inspect.getfullargspec(object.__init__).

2021-08-23 Thread Mehrzad
New submission from Mehrzad : The inspection `inspect.getfullargspec(object.__init__)` shows that `object.__init__` takes both varargs (starred) and varkw (double-starred) arguments.* However, it is impossible to call `object.__init__` with varargs or varkw arguments. If one tries to call

[issue27028] BasicInterpolation issue with %()

2016-05-15 Thread Mehrzad Irani
New submission from Mehrzad Irani: The below code works fine with ExtendedInterpolation; however with BasicInterpolation it _url fails with invalid variable reference. The INI file: [DEFAULT] domain=abc.labs.com [machine-details] compilation_machine=abc1 compilation_machine_url