Skip to content

Commit

Permalink
Announcements, bump version, tweak example to show attr visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed May 25, 2015
1 parent a024547 commit f390f25
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions debug_me.py
@@ -1,3 +1,10 @@
class MyClass(object):
def __init__(self, a, b):
self.a = a
self.b = b
self._b = [b]

mc = MyClass(15, MyClass(12, None))

def simple_func(x):
x += 1
Expand Down
2 changes: 1 addition & 1 deletion pudb/__init__.py
@@ -1,4 +1,4 @@
NUM_VERSION = (2015, 2)
NUM_VERSION = (2015, 3)
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
__version__ = VERSION

Expand Down
6 changes: 5 additions & 1 deletion pudb/debugger.py
Expand Up @@ -2036,7 +2036,7 @@ def event_loop(self, toplevel=None):
self.message("Package 'pygments' not found. "
"Syntax highlighting disabled.")

WELCOME_LEVEL = "e024"
WELCOME_LEVEL = "e025"
if CONFIG["seen_welcome"] < WELCOME_LEVEL:
CONFIG["seen_welcome"] = WELCOME_LEVEL
from pudb import VERSION
Expand All @@ -2053,6 +2053,10 @@ def event_loop(self, toplevel=None):
"(invoked by hitting '?' after this message) should get you "
"on your way.\n"

"\nChanges in version 2015.3:\n\n"
"- Disable set_trace lines from the UI (Aaron Meurer)\n"
"- Better control over attribute visibility (Ned Batchelder)\n"

"\nChanges in version 2015.2:\n\n"
"- ptpython support (P. Varet)\n"
"- Improved rxvt support (Louper Rouch)\n"
Expand Down

0 comments on commit f390f25

Please sign in to comment.