33 | | 2. It solves #17807: thanks to #17413, entering `0100` will give a deprecation warning so at users should know something funny is going on when they enter `0100`. |
| 33 | 2. It solves #17807: thanks to #17413, entering `0100` will give a deprecation warning so that users should know something funny is going on: |
| 34 | {{{ |
| 35 | sage: 0100 |
| 36 | /usr/local/src/sage-git/local/lib/python2.7/site-packages/IPython/core/interactiveshell.py:2883: DeprecationWarning: use 0o as octal prefix instead of 0 |
| 37 | See http://trac.sagemath.org/17413 for details. |
| 38 | exec(code_obj, self.user_global_ns, self.user_ns) |
| 39 | 64 |
| 40 | }}} |