File: tableExtension.py

package info (click to toggle)
pytables 3.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 12,632 kB
  • ctags: 13,004
  • sloc: python: 58,642; ansic: 16,440; cpp: 1,463; sh: 452; makefile: 289
file content (6 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
from warnings import warn
from tables.tableextension import *

_warnmsg = ("tableExtension is pending deprecation, import tableextension instead. "
            "You may use the pt2to3 tool to update your source code.")
warn(_warnmsg, DeprecationWarning, stacklevel=2)