Announcements, bump version, tweak example to show attr visibility
This commit is contained in:
parent
a0245474fd
commit
f390f25a91
@ -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
|
||||
|
@ -1,4 +1,4 @@
|
||||
NUM_VERSION = (2015, 2)
|
||||
NUM_VERSION = (2015, 3)
|
||||
VERSION = ".".join(str(nv) for nv in NUM_VERSION)
|
||||
__version__ = VERSION
|
||||
|
||||
|
@ -2036,7 +2036,7 @@ class DebuggerUI(FrameVarInfoKeeper):
|
||||
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
|
||||
@ -2053,6 +2053,10 @@ class DebuggerUI(FrameVarInfoKeeper):
|
||||
"(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"
|
||||
|
Loading…
Reference in New Issue
Block a user