Fix docstring bug

This commit is contained in:
Raymond Hettinger 2007-02-08 01:42:35 +00:00
parent 0e7a632f57
commit 495df4716f
1 changed files with 1 additions and 1 deletions

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