Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jun 4, 2021. It is now read-only.

Commit 579826c

Browse files
committed
updates
1 parent 7f24138 commit 579826c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

‎.idea/PythonDebugTools.iml‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/misc.xml‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/PythonDebugTools/__version__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# ------------------------------------------------------------------------------
66

77
# major.minor[.maintenance]
8-
VERSION = (1, 7, 3)
8+
VERSION = (1, 7, 4)
99

1010
__version__ = version = '.'.join(map(str, VERSION))
1111

‎src/PythonDebugTools/console.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
__all__ = ['PRINT', 'getPPrintStr', 'print_exception']
88

99
pp = pprint.PrettyPrinter(indent=4)
10-
def PRINT(title: str, o: object):
10+
def PRINT(title: str, *args, **kwargs):
1111
print(f"\n ---------------- {title} ---------------- \n\r")
12-
pp.pprint(o)
12+
pp.pprint(dict(args=args, kwargs=kwargs))
1313

1414

1515

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /