Wed Sep 6 20:07:45 2023 UTC ()
py-pydicom: updated to 2.4.3

Version 2.4.3

Fixes
-----

* Fixed pydicom codify error when relative path did not exist

Version 2.4.0

Changes
-------
* Removed support for Python 3.6 (EOL since December 2021)

Enhancements
------------
* Added attribute :attr:`~pydicom.valuerep.PersonName.alphabetic` (:pr:`1634`)
* Added attribute :attr:`~pydicom.tag.BaseTag.json_key` (:pr:`1648`)
* Added value validation for numerical VRs, add type validation for all
  validated VRs (:issue:`1414`)
* CLI commands now accept *pydicom* charset test files and CLI help shows
  Python Version (:pr:`1674`)
* Added support for Python 3.11 (:issue:`1658`)
* Added :class:`~pydicom.valuerep.ISfloat` to allow non-strict reading of
  existing files with float IS values (:issue:`1661`)
* Improved speed of creating and accessing highly nested structures
  (:issue:`1728`, :pr:`1734`)
* Switched to a pyproject.toml build process (:pr:`1792`)
* Updated DICOM and UID dicts to DICOM 2023b (:pr:`1803`)

Fixes
-----
* Fixed length validation of DS values with maximum length without a leading
  zero (:issue:`1632`)
* Increased download speed with progress bar for test data (:issue:`1611`)
* Fixed crash due to invalid private creator (:issue:`1638`)
* Fixed extremely long BytesLengthException error messages (:pr:`1683`)
* In codify, ensure unique variable names for DICOM keywords repeated
  in sequences, and handle unicode characters correctly (:issue:`1670`)
* Fixed handling of some invalid values in
  :meth:`~pydicom.dataset.Dataset.to_json_dict` if `suppress_invalid_tags` is
  set to `True` (:issue:`1693`)
* Fixed reading of data with 8 bits allocated, encoded in Big Endian transfer
  syntax using VR ``OW`` (:issue:`1680`)
* Fixed crash if reading regular dataset that has the SOP Class of a DICOMDIR
  (:issue:`1702`)
* Fixed wrong waveform data calculation when as_raw=False and baseline!=0 (:issue:`1667`)
* Fixed reading LUTData to expected size (:pr:`1747`)
* Fixed handling of AT VRs when codifying data elements (:issue:`1738`)

Pydicom Internals
-----------------
* In test suites, renamed 'setup' and 'teardown' methods, deprecated starting
  in pytest 7.2
* Use own fork of `CharPyLS` to handle builds with Python 3.11 (:issue:`1788`)


(adam)
diff -r1.9 -r1.10 pkgsrc/biology/py-pydicom/Makefile
diff -r1.9 -r1.10 pkgsrc/biology/py-pydicom/distinfo
diff -r1.5 -r1.6 pkgsrc/biology/py-pydicom/PLIST

cvs diff -r1.9 -r1.10 pkgsrc/biology/py-pydicom/Makefile (expand / switch to unified diff)

--- pkgsrc/biology/py-pydicom/Makefile 2022/11/15 10:15:54 1.9
+++ pkgsrc/biology/py-pydicom/Makefile 2023/09/06 20:07:45 1.10
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.9 2022/11/15 10:15:54 adam Exp $ 1# $NetBSD: Makefile,v 1.10 2023/09/06 20:07:45 adam Exp $
2 2
3DISTNAME= pydicom-2.3.1 3DISTNAME= pydicom-2.4.3
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= biology python 5CATEGORIES= biology python
6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pydicom/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=p/pydicom/}
7 7
8MAINTAINER= eborisch@gmail.com 8MAINTAINER= eborisch@gmail.com
9HOMEPAGE= https://github.com/pydicom/pydicom 9HOMEPAGE= https://github.com/pydicom/pydicom
10COMMENT= Pure python package for working with DICOM files 10COMMENT= Pure python package for working with DICOM files
11LICENSE= modified-bsd AND mit 11LICENSE= modified-bsd AND mit
12 12
13TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner 13TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
14 14
15USE_LANGUAGES= # none 15USE_LANGUAGES= # none
16 16

cvs diff -r1.9 -r1.10 pkgsrc/biology/py-pydicom/distinfo (expand / switch to unified diff)

--- pkgsrc/biology/py-pydicom/distinfo 2022/11/15 10:15:54 1.9
+++ pkgsrc/biology/py-pydicom/distinfo 2023/09/06 20:07:45 1.10
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.9 2022/11/15 10:15:54 adam Exp $ 1$NetBSD: distinfo,v 1.10 2023/09/06 20:07:45 adam Exp $
2 2
3BLAKE2s (pydicom-2.3.1.tar.gz) = 913f4cc39f2c973cdb6c70396ed801aaea8bd1281784a2be279779cef1fb406e 3BLAKE2s (pydicom-2.4.3.tar.gz) = bf4af040ba03d9bcc8685a91e7ff96b7f3eb85546c2371a75c8da93d67c6d208
4SHA512 (pydicom-2.3.1.tar.gz) = bf2856b8afa13f6477a37abdc7d723337f532746705832b0eb01cfcf468f318ec4b74af5aade3b8629d050947a87e87fb39aca965ff98d0a348170a900d7dd57 4SHA512 (pydicom-2.4.3.tar.gz) = fbe907bb40af53457abbb43aeb4edef0105aba2ff90b6012e20896b2ffff847fa0c0301cd0cae24a7fc2989c8303d98ce1973d02e60dd1f6041f7c0d653b1e3a
5Size (pydicom-2.3.1.tar.gz) = 2164956 bytes 5Size (pydicom-2.4.3.tar.gz) = 2016407 bytes

cvs diff -r1.5 -r1.6 pkgsrc/biology/py-pydicom/PLIST (expand / switch to unified diff)

--- pkgsrc/biology/py-pydicom/PLIST 2022/11/08 11:51:41 1.5
+++ pkgsrc/biology/py-pydicom/PLIST 2023/09/06 20:07:45 1.6
@@ -1,58 +1,40 @@ @@ -1,58 +1,40 @@
1@comment $NetBSD: PLIST,v 1.5 2022/11/08 11:51:41 adam Exp $ 1@comment $NetBSD: PLIST,v 1.6 2023/09/06 20:07:45 adam Exp $
2bin/pydicom-${PYVERSSUFFIX} 2bin/pydicom-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/pydicom/__init__.py 10${PYSITELIB}/pydicom/__init__.py
11${PYSITELIB}/pydicom/__init__.pyc 11${PYSITELIB}/pydicom/__init__.pyc
12${PYSITELIB}/pydicom/__init__.pyo 12${PYSITELIB}/pydicom/__init__.pyo
13${PYSITELIB}/pydicom/_dicom_dict.py 13${PYSITELIB}/pydicom/_dicom_dict.py
14${PYSITELIB}/pydicom/_dicom_dict.pyc 14${PYSITELIB}/pydicom/_dicom_dict.pyc
15${PYSITELIB}/pydicom/_dicom_dict.pyo 15${PYSITELIB}/pydicom/_dicom_dict.pyo
16${PYSITELIB}/pydicom/_private_dict.py 16${PYSITELIB}/pydicom/_private_dict.py
17${PYSITELIB}/pydicom/_private_dict.pyc 17${PYSITELIB}/pydicom/_private_dict.pyc
18${PYSITELIB}/pydicom/_private_dict.pyo 18${PYSITELIB}/pydicom/_private_dict.pyo
19${PYSITELIB}/pydicom/_storage_sopclass_uids.py 19${PYSITELIB}/pydicom/_storage_sopclass_uids.py
20${PYSITELIB}/pydicom/_storage_sopclass_uids.pyc 20${PYSITELIB}/pydicom/_storage_sopclass_uids.pyc
21${PYSITELIB}/pydicom/_storage_sopclass_uids.pyo 21${PYSITELIB}/pydicom/_storage_sopclass_uids.pyo
22${PYSITELIB}/pydicom/_uid_dict.py 22${PYSITELIB}/pydicom/_uid_dict.py
23${PYSITELIB}/pydicom/_uid_dict.pyc 23${PYSITELIB}/pydicom/_uid_dict.pyc
24${PYSITELIB}/pydicom/_uid_dict.pyo 24${PYSITELIB}/pydicom/_uid_dict.pyo
25${PYSITELIB}/pydicom/_version.py 25${PYSITELIB}/pydicom/_version.py
26${PYSITELIB}/pydicom/_version.pyc 26${PYSITELIB}/pydicom/_version.pyc
27${PYSITELIB}/pydicom/_version.pyo 27${PYSITELIB}/pydicom/_version.pyo
28${PYSITELIB}/pydicom/benchmarks/__init__.py 
29${PYSITELIB}/pydicom/benchmarks/__init__.pyc 
30${PYSITELIB}/pydicom/benchmarks/__init__.pyo 
31${PYSITELIB}/pydicom/benchmarks/bench_encaps.py 
32${PYSITELIB}/pydicom/benchmarks/bench_encaps.pyc 
33${PYSITELIB}/pydicom/benchmarks/bench_encaps.pyo 
34${PYSITELIB}/pydicom/benchmarks/bench_handler_numpy.py 
35${PYSITELIB}/pydicom/benchmarks/bench_handler_numpy.pyc 
36${PYSITELIB}/pydicom/benchmarks/bench_handler_numpy.pyo 
37${PYSITELIB}/pydicom/benchmarks/bench_pixel_util.py 
38${PYSITELIB}/pydicom/benchmarks/bench_pixel_util.pyc 
39${PYSITELIB}/pydicom/benchmarks/bench_pixel_util.pyo 
40${PYSITELIB}/pydicom/benchmarks/bench_rle_decode.py 
41${PYSITELIB}/pydicom/benchmarks/bench_rle_decode.pyc 
42${PYSITELIB}/pydicom/benchmarks/bench_rle_decode.pyo 
43${PYSITELIB}/pydicom/benchmarks/bench_rle_encode.py 
44${PYSITELIB}/pydicom/benchmarks/bench_rle_encode.pyc 
45${PYSITELIB}/pydicom/benchmarks/bench_rle_encode.pyo 
46${PYSITELIB}/pydicom/charset.py 28${PYSITELIB}/pydicom/charset.py
47${PYSITELIB}/pydicom/charset.pyc 29${PYSITELIB}/pydicom/charset.pyc
48${PYSITELIB}/pydicom/charset.pyo 30${PYSITELIB}/pydicom/charset.pyo
49${PYSITELIB}/pydicom/cli/__init__.py 31${PYSITELIB}/pydicom/cli/__init__.py
50${PYSITELIB}/pydicom/cli/__init__.pyc 32${PYSITELIB}/pydicom/cli/__init__.pyc
51${PYSITELIB}/pydicom/cli/__init__.pyo 33${PYSITELIB}/pydicom/cli/__init__.pyo
52${PYSITELIB}/pydicom/cli/codify.py 34${PYSITELIB}/pydicom/cli/codify.py
53${PYSITELIB}/pydicom/cli/codify.pyc 35${PYSITELIB}/pydicom/cli/codify.pyc
54${PYSITELIB}/pydicom/cli/codify.pyo 36${PYSITELIB}/pydicom/cli/codify.pyo
55${PYSITELIB}/pydicom/cli/main.py 37${PYSITELIB}/pydicom/cli/main.py
56${PYSITELIB}/pydicom/cli/main.pyc 38${PYSITELIB}/pydicom/cli/main.pyc
57${PYSITELIB}/pydicom/cli/main.pyo 39${PYSITELIB}/pydicom/cli/main.pyo
58${PYSITELIB}/pydicom/cli/show.py 40${PYSITELIB}/pydicom/cli/show.py
@@ -137,26 +119,27 @@ ${PYSITELIB}/pydicom/data/test_files/SC_ @@ -137,26 +119,27 @@ ${PYSITELIB}/pydicom/data/test_files/SC_
137${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg.dcm 119${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg.dcm
138${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_app14_dcmd.dcm 120${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_app14_dcmd.dcm
139${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_dcmd.dcm 121${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_dcmd.dcm
140${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_dcmtk.dcm 122${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_dcmtk.dcm
141${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_gdcm.dcm 123${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_gdcm.dcm
142${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_lossy_gdcm.dcm 124${PYSITELIB}/pydicom/data/test_files/SC_rgb_jpeg_lossy_gdcm.dcm
143${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle.dcm 125${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle.dcm
144${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_16bit.dcm 126${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_16bit.dcm
145${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_16bit_2frame.dcm 127${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_16bit_2frame.dcm
146${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_2frame.dcm 128${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_2frame.dcm
147${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_32bit.dcm 129${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_32bit.dcm
148${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_32bit_2frame.dcm 130${PYSITELIB}/pydicom/data/test_files/SC_rgb_rle_32bit_2frame.dcm
149${PYSITELIB}/pydicom/data/test_files/SC_rgb_small_odd.dcm 131${PYSITELIB}/pydicom/data/test_files/SC_rgb_small_odd.dcm
 132${PYSITELIB}/pydicom/data/test_files/SC_rgb_small_odd_big_endian.dcm
150${PYSITELIB}/pydicom/data/test_files/SC_rgb_small_odd_jpeg.dcm 133${PYSITELIB}/pydicom/data/test_files/SC_rgb_small_odd_jpeg.dcm
151${PYSITELIB}/pydicom/data/test_files/SC_ybr_full_422_uncompressed.dcm 134${PYSITELIB}/pydicom/data/test_files/SC_ybr_full_422_uncompressed.dcm
152${PYSITELIB}/pydicom/data/test_files/UN_sequence.dcm 135${PYSITELIB}/pydicom/data/test_files/UN_sequence.dcm
153${PYSITELIB}/pydicom/data/test_files/badVR.dcm 136${PYSITELIB}/pydicom/data/test_files/badVR.dcm
154${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR1/6154 137${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR1/6154
155${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR2/6247 138${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR2/6247
156${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR3/6278 139${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CR3/6278
157${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17106 140${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17106
158${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17136 141${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17136
159${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17166 142${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17166
160${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17196 143${PYSITELIB}/pydicom/data/test_files/dicomdirtests/77654033/CT2/17196
161${PYSITELIB}/pydicom/data/test_files/dicomdirtests/98892001/CT2N/6293 144${PYSITELIB}/pydicom/data/test_files/dicomdirtests/98892001/CT2N/6293
162${PYSITELIB}/pydicom/data/test_files/dicomdirtests/98892001/CT2N/6924 145${PYSITELIB}/pydicom/data/test_files/dicomdirtests/98892001/CT2N/6924
@@ -381,158 +364,26 @@ ${PYSITELIB}/pydicom/sr/_concepts_dict.p @@ -381,158 +364,26 @@ ${PYSITELIB}/pydicom/sr/_concepts_dict.p
381${PYSITELIB}/pydicom/sr/_concepts_dict.pyo 364${PYSITELIB}/pydicom/sr/_concepts_dict.pyo
382${PYSITELIB}/pydicom/sr/_snomed_dict.py 365${PYSITELIB}/pydicom/sr/_snomed_dict.py
383${PYSITELIB}/pydicom/sr/_snomed_dict.pyc 366${PYSITELIB}/pydicom/sr/_snomed_dict.pyc
384${PYSITELIB}/pydicom/sr/_snomed_dict.pyo 367${PYSITELIB}/pydicom/sr/_snomed_dict.pyo
385${PYSITELIB}/pydicom/sr/codedict.py 368${PYSITELIB}/pydicom/sr/codedict.py
386${PYSITELIB}/pydicom/sr/codedict.pyc 369${PYSITELIB}/pydicom/sr/codedict.pyc
387${PYSITELIB}/pydicom/sr/codedict.pyo 370${PYSITELIB}/pydicom/sr/codedict.pyo
388${PYSITELIB}/pydicom/sr/coding.py 371${PYSITELIB}/pydicom/sr/coding.py
389${PYSITELIB}/pydicom/sr/coding.pyc 372${PYSITELIB}/pydicom/sr/coding.pyc
390${PYSITELIB}/pydicom/sr/coding.pyo 373${PYSITELIB}/pydicom/sr/coding.pyo
391${PYSITELIB}/pydicom/tag.py 374${PYSITELIB}/pydicom/tag.py
392${PYSITELIB}/pydicom/tag.pyc 375${PYSITELIB}/pydicom/tag.pyc
393${PYSITELIB}/pydicom/tag.pyo 376${PYSITELIB}/pydicom/tag.pyo
394${PYSITELIB}/pydicom/tests/__init__.py 
395${PYSITELIB}/pydicom/tests/__init__.pyc 
396${PYSITELIB}/pydicom/tests/__init__.pyo 
397${PYSITELIB}/pydicom/tests/_write_stds.py 
398${PYSITELIB}/pydicom/tests/_write_stds.pyc 
399${PYSITELIB}/pydicom/tests/_write_stds.pyo 
400${PYSITELIB}/pydicom/tests/conftest.py 
401${PYSITELIB}/pydicom/tests/conftest.pyc 
402${PYSITELIB}/pydicom/tests/conftest.pyo 
403${PYSITELIB}/pydicom/tests/test_JPEG_LS_transfer_syntax.py 
404${PYSITELIB}/pydicom/tests/test_JPEG_LS_transfer_syntax.pyc 
405${PYSITELIB}/pydicom/tests/test_JPEG_LS_transfer_syntax.pyo 
406${PYSITELIB}/pydicom/tests/test_charset.py 
407${PYSITELIB}/pydicom/tests/test_charset.pyc 
408${PYSITELIB}/pydicom/tests/test_charset.pyo 
409${PYSITELIB}/pydicom/tests/test_cli.py 
410${PYSITELIB}/pydicom/tests/test_cli.pyc 
411${PYSITELIB}/pydicom/tests/test_cli.pyo 
412${PYSITELIB}/pydicom/tests/test_codes.py 
413${PYSITELIB}/pydicom/tests/test_codes.pyc 
414${PYSITELIB}/pydicom/tests/test_codes.pyo 
415${PYSITELIB}/pydicom/tests/test_config.py 
416${PYSITELIB}/pydicom/tests/test_config.pyc 
417${PYSITELIB}/pydicom/tests/test_config.pyo 
418${PYSITELIB}/pydicom/tests/test_data_manager.py 
419${PYSITELIB}/pydicom/tests/test_data_manager.pyc 
420${PYSITELIB}/pydicom/tests/test_data_manager.pyo 
421${PYSITELIB}/pydicom/tests/test_dataelem.py 
422${PYSITELIB}/pydicom/tests/test_dataelem.pyc 
423${PYSITELIB}/pydicom/tests/test_dataelem.pyo 
424${PYSITELIB}/pydicom/tests/test_dataset.py 
425${PYSITELIB}/pydicom/tests/test_dataset.pyc 
426${PYSITELIB}/pydicom/tests/test_dataset.pyo 
427${PYSITELIB}/pydicom/tests/test_dicomdir.py 
428${PYSITELIB}/pydicom/tests/test_dicomdir.pyc 
429${PYSITELIB}/pydicom/tests/test_dicomdir.pyo 
430${PYSITELIB}/pydicom/tests/test_dictionary.py 
431${PYSITELIB}/pydicom/tests/test_dictionary.pyc 
432${PYSITELIB}/pydicom/tests/test_dictionary.pyo 
433${PYSITELIB}/pydicom/tests/test_encaps.py 
434${PYSITELIB}/pydicom/tests/test_encaps.pyc 
435${PYSITELIB}/pydicom/tests/test_encaps.pyo 
436${PYSITELIB}/pydicom/tests/test_encoders.py 
437${PYSITELIB}/pydicom/tests/test_encoders.pyc 
438${PYSITELIB}/pydicom/tests/test_encoders.pyo 
439${PYSITELIB}/pydicom/tests/test_encoders_gdcm.py 
440${PYSITELIB}/pydicom/tests/test_encoders_gdcm.pyc 
441${PYSITELIB}/pydicom/tests/test_encoders_gdcm.pyo 
442${PYSITELIB}/pydicom/tests/test_encoders_pydicom.py 
443${PYSITELIB}/pydicom/tests/test_encoders_pydicom.pyc 
444${PYSITELIB}/pydicom/tests/test_encoders_pydicom.pyo 
445${PYSITELIB}/pydicom/tests/test_env_info.py 
446${PYSITELIB}/pydicom/tests/test_env_info.pyc 
447${PYSITELIB}/pydicom/tests/test_env_info.pyo 
448${PYSITELIB}/pydicom/tests/test_errors.py 
449${PYSITELIB}/pydicom/tests/test_errors.pyc 
450${PYSITELIB}/pydicom/tests/test_errors.pyo 
451${PYSITELIB}/pydicom/tests/test_filebase.py 
452${PYSITELIB}/pydicom/tests/test_filebase.pyc 
453${PYSITELIB}/pydicom/tests/test_filebase.pyo 
454${PYSITELIB}/pydicom/tests/test_filereader.py 
455${PYSITELIB}/pydicom/tests/test_filereader.pyc 
456${PYSITELIB}/pydicom/tests/test_filereader.pyo 
457${PYSITELIB}/pydicom/tests/test_fileset.py 
458${PYSITELIB}/pydicom/tests/test_fileset.pyc 
459${PYSITELIB}/pydicom/tests/test_fileset.pyo 
460${PYSITELIB}/pydicom/tests/test_fileutil.py 
461${PYSITELIB}/pydicom/tests/test_fileutil.pyc 
462${PYSITELIB}/pydicom/tests/test_fileutil.pyo 
463${PYSITELIB}/pydicom/tests/test_filewriter.py 
464${PYSITELIB}/pydicom/tests/test_filewriter.pyc 
465${PYSITELIB}/pydicom/tests/test_filewriter.pyo 
466${PYSITELIB}/pydicom/tests/test_gdcm_pixel_data.py 
467${PYSITELIB}/pydicom/tests/test_gdcm_pixel_data.pyc 
468${PYSITELIB}/pydicom/tests/test_gdcm_pixel_data.pyo 
469${PYSITELIB}/pydicom/tests/test_handler_util.py 
470${PYSITELIB}/pydicom/tests/test_handler_util.pyc 
471${PYSITELIB}/pydicom/tests/test_handler_util.pyo 
472${PYSITELIB}/pydicom/tests/test_jpeg_ls_pixel_data.py 
473${PYSITELIB}/pydicom/tests/test_jpeg_ls_pixel_data.pyc 
474${PYSITELIB}/pydicom/tests/test_jpeg_ls_pixel_data.pyo 
475${PYSITELIB}/pydicom/tests/test_json.py 
476${PYSITELIB}/pydicom/tests/test_json.pyc 
477${PYSITELIB}/pydicom/tests/test_json.pyo 
478${PYSITELIB}/pydicom/tests/test_misc.py 
479${PYSITELIB}/pydicom/tests/test_misc.pyc 
480${PYSITELIB}/pydicom/tests/test_misc.pyo 
481${PYSITELIB}/pydicom/tests/test_multival.py 
482${PYSITELIB}/pydicom/tests/test_multival.pyc 
483${PYSITELIB}/pydicom/tests/test_multival.pyo 
484${PYSITELIB}/pydicom/tests/test_numpy_pixel_data.py 
485${PYSITELIB}/pydicom/tests/test_numpy_pixel_data.pyc 
486${PYSITELIB}/pydicom/tests/test_numpy_pixel_data.pyo 
487${PYSITELIB}/pydicom/tests/test_overlay_np.py 
488${PYSITELIB}/pydicom/tests/test_overlay_np.pyc 
489${PYSITELIB}/pydicom/tests/test_overlay_np.pyo 
490${PYSITELIB}/pydicom/tests/test_pillow_pixel_data.py 
491${PYSITELIB}/pydicom/tests/test_pillow_pixel_data.pyc 
492${PYSITELIB}/pydicom/tests/test_pillow_pixel_data.pyo 
493${PYSITELIB}/pydicom/tests/test_pylibjpeg.py 
494${PYSITELIB}/pydicom/tests/test_pylibjpeg.pyc 
495${PYSITELIB}/pydicom/tests/test_pylibjpeg.pyo 
496${PYSITELIB}/pydicom/tests/test_rawread.py 
497${PYSITELIB}/pydicom/tests/test_rawread.pyc 
498${PYSITELIB}/pydicom/tests/test_rawread.pyo 
499${PYSITELIB}/pydicom/tests/test_rle_pixel_data.py 
500${PYSITELIB}/pydicom/tests/test_rle_pixel_data.pyc 
501${PYSITELIB}/pydicom/tests/test_rle_pixel_data.pyo 
502${PYSITELIB}/pydicom/tests/test_sequence.py 
503${PYSITELIB}/pydicom/tests/test_sequence.pyc 
504${PYSITELIB}/pydicom/tests/test_sequence.pyo 
505${PYSITELIB}/pydicom/tests/test_tag.py 
506${PYSITELIB}/pydicom/tests/test_tag.pyc 
507${PYSITELIB}/pydicom/tests/test_tag.pyo 
508${PYSITELIB}/pydicom/tests/test_uid.py 
509${PYSITELIB}/pydicom/tests/test_uid.pyc 
510${PYSITELIB}/pydicom/tests/test_uid.pyo 
511${PYSITELIB}/pydicom/tests/test_unicode.py 
512${PYSITELIB}/pydicom/tests/test_unicode.pyc 
513${PYSITELIB}/pydicom/tests/test_unicode.pyo 
514${PYSITELIB}/pydicom/tests/test_util.py 
515${PYSITELIB}/pydicom/tests/test_util.pyc 
516${PYSITELIB}/pydicom/tests/test_util.pyo 
517${PYSITELIB}/pydicom/tests/test_valuerep.py 
518${PYSITELIB}/pydicom/tests/test_valuerep.pyc 
519${PYSITELIB}/pydicom/tests/test_valuerep.pyo 
520${PYSITELIB}/pydicom/tests/test_values.py 
521${PYSITELIB}/pydicom/tests/test_values.pyc 
522${PYSITELIB}/pydicom/tests/test_values.pyo 
523${PYSITELIB}/pydicom/tests/test_waveform.py 
524${PYSITELIB}/pydicom/tests/test_waveform.pyc 
525${PYSITELIB}/pydicom/tests/test_waveform.pyo 
526${PYSITELIB}/pydicom/uid.py 377${PYSITELIB}/pydicom/uid.py
527${PYSITELIB}/pydicom/uid.pyc 378${PYSITELIB}/pydicom/uid.pyc
528${PYSITELIB}/pydicom/uid.pyo 379${PYSITELIB}/pydicom/uid.pyo
529${PYSITELIB}/pydicom/util/__init__.py 380${PYSITELIB}/pydicom/util/__init__.py
530${PYSITELIB}/pydicom/util/__init__.pyc 381${PYSITELIB}/pydicom/util/__init__.pyc
531${PYSITELIB}/pydicom/util/__init__.pyo 382${PYSITELIB}/pydicom/util/__init__.pyo
532${PYSITELIB}/pydicom/util/codify.py 383${PYSITELIB}/pydicom/util/codify.py
533${PYSITELIB}/pydicom/util/codify.pyc 384${PYSITELIB}/pydicom/util/codify.pyc
534${PYSITELIB}/pydicom/util/codify.pyo 385${PYSITELIB}/pydicom/util/codify.pyo
535${PYSITELIB}/pydicom/util/dump.py 386${PYSITELIB}/pydicom/util/dump.py
536${PYSITELIB}/pydicom/util/dump.pyc 387${PYSITELIB}/pydicom/util/dump.pyc
537${PYSITELIB}/pydicom/util/dump.pyo 388${PYSITELIB}/pydicom/util/dump.pyo
538${PYSITELIB}/pydicom/util/fixer.py 389${PYSITELIB}/pydicom/util/fixer.py