[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-15 Thread Ned Deily
Ned Deily added the comment: New changeset 6eb554583218cda9a145982a41c30612968a942f by Ned Deily (Miss Islington (bot)) in branch '3.7': bpo-38235: Correct some arguments names in logging documentation (GH-16571) (GH-16577)

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread AWhetter
Change by AWhetter : -- pull_requests: +16177 pull_request: https://github.com/python/cpython/pull/16586 ___ Python tracker ___ ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 4f82a53c5d34df00bf2d563c2417f5e2638d1004 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-38235: Correct some arguments names in logging documentation (GH-16571) (GH-16577)

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3af2733a8265a2685b2c0466a58a66e544a81c64 by Vinay Sajip (Miss Islington (bot)) in branch '3.8': bpo-38235: Correct some arguments names in logging documentation (GH-16571) (GH-16576)

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +16169 pull_request: https://github.com/python/cpython/pull/16577 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread miss-islington
Change by miss-islington : -- pull_requests: +16168 pull_request: https://github.com/python/cpython/pull/16576 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3142c667b50254daaa28f22c79bdda177136bd03 by Vinay Sajip (Ashley Whetter) in branch 'master': bpo-38235: Correct some arguments names in logging documentation (GH-16571)

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-04 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: rhettinger -> vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-10-03 Thread AWhetter
Change by AWhetter : -- keywords: +patch pull_requests: +16162 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16571 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-09-20 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> rhettinger nosy: +rhettinger versions: -Python 3.5, Python 3.6 ___ Python tracker ___

[issue38235] Docs of logging module says argument is named "lvl". TypeError.

2019-09-20 Thread Daniel Andersson
New submission from Daniel Andersson : How to reproduce: >>> import logging >>> logging.disable(lvl=logging.ERROR) Traceback (most recent call last): File "", line 1, in TypeError: disable() got an unexpected keyword argument 'lvl' The correct keyword argument name is `level` as can be