Assorted debugging facilities.
*Latest release 20241005*:
* New log_via_print(msg, *args[, file=stdout]) function to use cs.upd.print as a logging call.
* @trace: new $CS_DEBUG_TRACE envvar which may be "print" or "warning" or "X".
* New @abrk decorator to intercept AssertionError, NameError and RuntimeError and call breakpoint.
If the environment variable `$CS_DEBUG_BUILTINS` is set to a comma
separated list of names then the `builtins` module will be monkey
patched with those names, enabling trite debug use of those names
anywhere in the code provided this module has been imported somewhere.
The allowed names are the list `cs.debug.__all__` and include:
* `X`: `cs.x.X`
* `abrk`: a decorator to call `breakpoint(0` in an `AssertionError`
* `pformat`: `pprint.pformat`
* `pprint`: `pprint.pprint`
* `print`: `cs.upd.print`
* `r`: `cs.lex.r`
* `redirect_stdout`: `contextlib.redirect_stdout`
* `s`: `cs.lex.s`
* `stack_dump`: dump current `Thread`'s call stack
* `thread_dump` dump the active `Thread`s with their call stacks
* `trace`: the `@trace` decorator
`$CS_DEBUG_BUILTINS` can also be set to `"1"` to install all of
`__all__` in the builtins.
## <a name="abrk"></a>`abrk(*da, **dkw)`
A decorator to intercept certain exceptions
(by default `AssertionError`, `NameError`, `RuntimeError`)
and call `breakpoint()`.
The breakpoint frame contains:
- `func`: the wrapper function
- `func_a`, `func_kw`: the function positional and keyword arguments
## <a name="stack_dump"></a>`stack_dump(stack=None, limit=None, logger=None, log_level=None)`
Dump a stack trace to a logger.
Parameters:
* `stack`: a stack list as returned by `traceback.extract_stack`.
If missing or `None`, use the result of `traceback.extract_stack()`.
* `limit`: a limit to the number of stack entries to dump.
If missing or `None`, dump all entries.
* `logger`: a `logger.Logger` ducktype or the name of a logger.
If missing or `None`, obtain a logger from `logging.getLogger()`.
* `log_level`: the logging level for the dump.
If missing or `None`, use `cs.logutils.loginfo.level`.
## <a name="thread_dump"></a>`thread_dump(Ts=None, fp=None)`
Write thread identifiers and stack traces to the file `fp`.
Parameters:
* `Ts`: the `Thread`s to dump; if unspecified use `threading.enumerate()`.
* `fp`: the file to which to write; if unspecified use `sys.stderr`.
## <a name="TimingOutLock"></a>Class `TimingOutLock`
A `Lock` replacement which times out, used for locating deadlock points.
## <a name="trace"></a>`trace(*da, **dkw)`
Decorator to report the call and return of a function.
Decorator parameters:
* `call`: trace the call, default `True`
* `retval`: trace the return, default `False`
* `exception`: trace raised exceptions, default `True`
* `use_pformat`: present the return value using
`pformat` instead of `repr`, default `False`
* `with_caller`: include the caller if this function, default `False`
* `with_pfx`: include the current `Pfx` prefix, default `False`
# Release Log
*Release 20241005*:
* New log_via_print(msg, *args[, file=stdout]) function to use cs.upd.print as a logging call.
* @trace: new $CS_DEBUG_TRACE envvar which may be "print" or "warning" or "X".
* New @abrk decorator to intercept AssertionError, NameError and RuntimeError and call breakpoint.
*Release 20240630*:
Assorted updates.
*Release 20240519*:
trace_caller: access frame.name instead of frame.funcname.
*Release 20240423*:
* Support "import *" by populating __all__ with X, r, s, TimingOutLock, thread_dump, stack_dump, trace.
* @trace: include the elapsed time on the return/exception log message.
*Release 20230613.1*:
Bugfix builtins monkey patch.
*Release 20230613*:
Honour $CS_DEBUG_BUILTINS envvar to monkey patch the builtins module, constraints via a white list.
*Release 20230610*:
* DebuggingRLock fixes.
* Move @trace from cs.py.func to cs.debug.
* Drop Lock and RLock alias factories - importers should just use the debugging lock classes directly.
* Rename threading.Thread to threading_Thread.
* Simplify the debugging lock classes.
*Release 20221118*:
stack_dump: cope when cs.logutils.setup_logging not run yet.
*Release 20211208*:
@trace moved to cs.pyfunc, other minor changes.
*Release 20200318*:
Remove use of cs.obj.O, universally supplanted by types.SimpleNamespace.
*Release 20181231*:
* New TimingOutLock for locating deadlock points, grew from debugging cs.vt.index.
* Other minor changes.
*Release 20171231*:
* Update imports for recentchanges.
* New context manager TraceSuite to trace start and end of a code suite.
*Release 20160918*:
selftest(): fix parameter ordering to match unittest.
*Release 20160828*:
Update metadata with "install_requires" instead of "requires".
*Release 20160827*:
* New openfiles() to return selected pathnames of open files via lsof(8).
* New selftest() to invoke unittests with benefits.
* DebugShell, a cmd.Cmd subclass for debugging - current use case calls this with self.__dict__ in a test case tearDwon.
* debug_object_shell: convenience wrapper for DebugShell to call it on an object's attributes.
*Release 20150116*:
PyPI prep.
Raw data
{
"_id": null,
"home_page": null,
"name": "cs.debug",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "python2, python3",
"author": null,
"author_email": "Cameron Simpson <cs@cskk.id.au>",
"download_url": "https://files.pythonhosted.org/packages/6f/3a/cb53741788edd5ea34b9e6e4d9b8cfe89142c03d2333073af5ca830505ad/cs_debug-20241005.tar.gz",
"platform": null,
"description": "Assorted debugging facilities.\n\n*Latest release 20241005*:\n* New log_via_print(msg, *args[, file=stdout]) function to use cs.upd.print as a logging call.\n* @trace: new $CS_DEBUG_TRACE envvar which may be \"print\" or \"warning\" or \"X\".\n* New @abrk decorator to intercept AssertionError, NameError and RuntimeError and call breakpoint.\n\nIf the environment variable `$CS_DEBUG_BUILTINS` is set to a comma\nseparated list of names then the `builtins` module will be monkey\npatched with those names, enabling trite debug use of those names\nanywhere in the code provided this module has been imported somewhere.\n\nThe allowed names are the list `cs.debug.__all__` and include:\n* `X`: `cs.x.X`\n* `abrk`: a decorator to call `breakpoint(0` in an `AssertionError`\n* `pformat`: `pprint.pformat`\n* `pprint`: `pprint.pprint`\n* `print`: `cs.upd.print`\n* `r`: `cs.lex.r`\n* `redirect_stdout`: `contextlib.redirect_stdout`\n* `s`: `cs.lex.s`\n* `stack_dump`: dump current `Thread`'s call stack\n* `thread_dump` dump the active `Thread`s with their call stacks\n* `trace`: the `@trace` decorator\n`$CS_DEBUG_BUILTINS` can also be set to `\"1\"` to install all of\n`__all__` in the builtins.\n\n## <a name=\"abrk\"></a>`abrk(*da, **dkw)`\n\nA decorator to intercept certain exceptions\n(by default `AssertionError`, `NameError`, `RuntimeError`)\nand call `breakpoint()`.\nThe breakpoint frame contains:\n- `func`: the wrapper function\n- `func_a`, `func_kw`: the function positional and keyword arguments\n\n## <a name=\"stack_dump\"></a>`stack_dump(stack=None, limit=None, logger=None, log_level=None)`\n\nDump a stack trace to a logger.\n\nParameters:\n* `stack`: a stack list as returned by `traceback.extract_stack`.\n If missing or `None`, use the result of `traceback.extract_stack()`.\n* `limit`: a limit to the number of stack entries to dump.\n If missing or `None`, dump all entries.\n* `logger`: a `logger.Logger` ducktype or the name of a logger.\n If missing or `None`, obtain a logger from `logging.getLogger()`.\n* `log_level`: the logging level for the dump.\n If missing or `None`, use `cs.logutils.loginfo.level`.\n\n## <a name=\"thread_dump\"></a>`thread_dump(Ts=None, fp=None)`\n\nWrite thread identifiers and stack traces to the file `fp`.\n\nParameters:\n* `Ts`: the `Thread`s to dump; if unspecified use `threading.enumerate()`.\n* `fp`: the file to which to write; if unspecified use `sys.stderr`.\n\n## <a name=\"TimingOutLock\"></a>Class `TimingOutLock`\n\nA `Lock` replacement which times out, used for locating deadlock points.\n\n## <a name=\"trace\"></a>`trace(*da, **dkw)`\n\nDecorator to report the call and return of a function.\n\nDecorator parameters:\n* `call`: trace the call, default `True`\n* `retval`: trace the return, default `False`\n* `exception`: trace raised exceptions, default `True`\n* `use_pformat`: present the return value using\n `pformat` instead of `repr`, default `False`\n* `with_caller`: include the caller if this function, default `False`\n* `with_pfx`: include the current `Pfx` prefix, default `False`\n\n# Release Log\n\n\n\n*Release 20241005*:\n* New log_via_print(msg, *args[, file=stdout]) function to use cs.upd.print as a logging call.\n* @trace: new $CS_DEBUG_TRACE envvar which may be \"print\" or \"warning\" or \"X\".\n* New @abrk decorator to intercept AssertionError, NameError and RuntimeError and call breakpoint.\n\n*Release 20240630*:\nAssorted updates.\n\n*Release 20240519*:\ntrace_caller: access frame.name instead of frame.funcname.\n\n*Release 20240423*:\n* Support \"import *\" by populating __all__ with X, r, s, TimingOutLock, thread_dump, stack_dump, trace.\n* @trace: include the elapsed time on the return/exception log message.\n\n*Release 20230613.1*:\nBugfix builtins monkey patch.\n\n*Release 20230613*:\nHonour $CS_DEBUG_BUILTINS envvar to monkey patch the builtins module, constraints via a white list.\n\n*Release 20230610*:\n* DebuggingRLock fixes.\n* Move @trace from cs.py.func to cs.debug.\n* Drop Lock and RLock alias factories - importers should just use the debugging lock classes directly.\n* Rename threading.Thread to threading_Thread.\n* Simplify the debugging lock classes.\n\n*Release 20221118*:\nstack_dump: cope when cs.logutils.setup_logging not run yet.\n\n*Release 20211208*:\n@trace moved to cs.pyfunc, other minor changes.\n\n*Release 20200318*:\nRemove use of cs.obj.O, universally supplanted by types.SimpleNamespace.\n\n*Release 20181231*:\n* New TimingOutLock for locating deadlock points, grew from debugging cs.vt.index.\n* Other minor changes.\n\n*Release 20171231*:\n* Update imports for recentchanges.\n* New context manager TraceSuite to trace start and end of a code suite.\n\n*Release 20160918*:\nselftest(): fix parameter ordering to match unittest.\n\n*Release 20160828*:\nUpdate metadata with \"install_requires\" instead of \"requires\".\n\n*Release 20160827*:\n* New openfiles() to return selected pathnames of open files via lsof(8).\n* New selftest() to invoke unittests with benefits.\n* DebugShell, a cmd.Cmd subclass for debugging - current use case calls this with self.__dict__ in a test case tearDwon.\n* debug_object_shell: convenience wrapper for DebugShell to call it on an object's attributes.\n\n*Release 20150116*:\nPyPI prep.\n",
"bugtrack_url": null,
"license": "GNU General Public License v3 or later (GPLv3+)",
"summary": "Assorted debugging facilities.",
"version": "20241005",
"project_urls": {
"MonoRepo Commits": "https://bitbucket.org/cameron_simpson/css/commits/branch/main",
"Monorepo Git Mirror": "https://github.com/cameron-simpson/css",
"Monorepo Hg/Mercurial Mirror": "https://hg.sr.ht/~cameron-simpson/css",
"Source": "https://github.com/cameron-simpson/css/blob/main/lib/python/cs/debug.py"
},
"split_keywords": [
"python2",
" python3"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "3f21694f2961d9743cd055899a7957142f16936fac39c2e9c4261443dadf8e98",
"md5": "13b337103bba467ff4c75b6a69363838",
"sha256": "2368a70eaca4d133c1a91d7f9c73e7900007c69675d51335d5a848ff2de5e4b4"
},
"downloads": -1,
"filename": "cs.debug-20241005-py3-none-any.whl",
"has_sig": false,
"md5_digest": "13b337103bba467ff4c75b6a69363838",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 11244,
"upload_time": "2024-10-05T09:10:37",
"upload_time_iso_8601": "2024-10-05T09:10:37.000460Z",
"url": "https://files.pythonhosted.org/packages/3f/21/694f2961d9743cd055899a7957142f16936fac39c2e9c4261443dadf8e98/cs.debug-20241005-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f3acb53741788edd5ea34b9e6e4d9b8cfe89142c03d2333073af5ca830505ad",
"md5": "dcf87512932d3b7b90b44bbc7d2777d6",
"sha256": "f70abfb1cac9b4925633dbf6140010646a4a36733b2dd814df708ec79c7eaec8"
},
"downloads": -1,
"filename": "cs_debug-20241005.tar.gz",
"has_sig": false,
"md5_digest": "dcf87512932d3b7b90b44bbc7d2777d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12188,
"upload_time": "2024-10-05T09:10:38",
"upload_time_iso_8601": "2024-10-05T09:10:38.760020Z",
"url": "https://files.pythonhosted.org/packages/6f/3a/cb53741788edd5ea34b9e6e4d9b8cfe89142c03d2333073af5ca830505ad/cs_debug-20241005.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-05 09:10:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "cameron-simpson",
"github_project": "css",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "cs.debug"
}