File: attribute.py

package info (click to toggle)
pydicom 0.9.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,884 kB
  • ctags: 645
  • sloc: python: 20,945; sh: 17; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# attribute.py
"""Deprecated -- to be removed in pydicom 1.0. Use dataelem module instead
"""
#
# Copyright (c) 2008 Darcy Mason
# This file is part of pydicom, released under a modified MIT license.
#    See the file license.txt included with this distribution, also
#    available at http://pydicom.googlecode.com
#

# Deprecated, but load old names into this namespace so older code will still work
import warnings
warnings.warn("dicom.attribute is deprecated and will be removed in pydicom 1.0. Use dicom.dataelem instead.", DeprecationWarning)

from dicom.dataelem import *