File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22Changelog
33=========
44
5- dev
5+ 1.7.0 (2021-03-22)
66------------------
77
8- * Fixed memory leak via ``sys.last_type ``, ``sys.last_value ``, ``sys.last_traceback ``
8+ * Fixed memory leak via ``sys.last_type ``, ``sys.last_value ``, ``sys.last_traceback ``.
9+ Contributed by Anton Ryzhov in `#59 <https://github.com/ionelmc/python-manhole/pull/59 >`_.
10+ * Fixed a bunch of double-close bugs and simplified stream handler code.
11+ Contributed by Anton Ryzhov in `#58 <https://github.com/ionelmc/python-manhole/pull/58 >`_.
12+ * Loosen up ``pid `` argument parsing in ``manhole-cli `` to allow using paths with any prefix
13+ (not just ``/tmp ``).
914
10151.6.0 (2019-01-19)
1116------------------
Original file line number Diff line number Diff line change 2727 SIG_NUMBERS .add (num )
2828
2929
30- def parse_pid (value , regex = re .compile (r'^(/tmp /manhole-)?(?P<pid>\d+)$' )):
30+ def parse_pid (value , regex = re .compile (r'^.+( /manhole-)?(?P<pid>\d+)$' )):
3131 match = regex .match (value )
3232 if not match :
3333 raise argparse .ArgumentTypeError ("PID must be in one of these forms: 1234 or /tmp/manhole-1234" )
You can’t perform that action at this time.
0 commit comments