Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Closed
Description
Current traceback message:
>>> pow(bass=5, exp=2)Traceback (most recent call last): ...TypeError: pow() missing required argument 'base' (pos 1)
Proposed:
>>> pow(bass=5, exp=2)Traceback (most recent call last): ...TypeError: pow() Keyword argument 'bass' not defined. Did you mean "base"?