Fix docstring bug

This commit is contained in:
Raymond Hettinger 2007-02-08 01:37:18 +00:00
parent fdf7bf8305
commit 0bafda4546

View file

@ -487,7 +487,7 @@ def localcontext(ctx=None):
28
>>> with localcontext():
... ctx = getcontext()
... ctx.prec() += 2
... ctx.prec += 2
... print ctx.prec
...
30