• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(12)  |  Call(8)  |  Derive(0)  |  Import(4)
No Document.

        def unregister_archive_format(name):
    del _ARCHIVE_FORMATS[name]
        


src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/test/test_shutil.py   ironruby(Download)
import os.path
from os.path import splitdrive
from distutils.spawn import find_executable, spawn
from shutil import (_make_tarball, _make_zipfile, make_archive,
                    register_archive_format, unregister_archive_format,
                    get_archive_formats)
import tarfile
                pass
            self.assertEquals(os.getcwd(), current_dir)
        finally:
            unregister_archive_format('xxx')
 
    def test_register_archive_format(self):
 
        formats = [name for name, params in get_archive_formats()]
        self.assertIn('xxx', formats)
 
        unregister_archive_format('xxx')
        formats = [name for name, params in get_archive_formats()]
        self.assertNotIn('xxx', formats)
 

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/CPython/27/Lib/test/test_shutil.py   ironruby(Download)
import os.path
from os.path import splitdrive
from distutils.spawn import find_executable, spawn
from shutil import (_make_tarball, _make_zipfile, make_archive,
                    register_archive_format, unregister_archive_format,
                    get_archive_formats)
import tarfile
                pass
            self.assertEquals(os.getcwd(), current_dir)
        finally:
            unregister_archive_format('xxx')
 
    def test_register_archive_format(self):
 
        formats = [name for name, params in get_archive_formats()]
        self.assertIn('xxx', formats)
 
        unregister_archive_format('xxx')
        formats = [name for name, params in get_archive_formats()]
        self.assertNotIn('xxx', formats)
 

src/p/y/pyvm-HEAD/projects/python_in_a_can/trunk/win32/python-2.7/Lib/test/test_shutil.py   pyvm(Download)
import os.path
from os.path import splitdrive
from distutils.spawn import find_executable, spawn
from shutil import (_make_tarball, _make_zipfile, make_archive,
                    register_archive_format, unregister_archive_format,
                    get_archive_formats)
import tarfile
                pass
            self.assertEquals(os.getcwd(), current_dir)
        finally:
            unregister_archive_format('xxx')
 
    def test_register_archive_format(self):
 
        formats = [name for name, params in get_archive_formats()]
        self.assertIn('xxx', formats)
 
        unregister_archive_format('xxx')
        formats = [name for name, params in get_archive_formats()]
        self.assertNotIn('xxx', formats)
 

src/s/t/stackless-HEAD/Lib/test/test_shutil.py   stackless(Download)
import os.path
from os.path import splitdrive
from distutils.spawn import find_executable, spawn
from shutil import (_make_tarball, _make_zipfile, make_archive,
                    register_archive_format, unregister_archive_format,
                    get_archive_formats)
import tarfile
                pass
            self.assertEquals(os.getcwd(), current_dir)
        finally:
            unregister_archive_format('xxx')
 
    def test_register_archive_format(self):
 
        formats = [name for name, params in get_archive_formats()]
        self.assertIn('xxx', formats)
 
        unregister_archive_format('xxx')
        formats = [name for name, params in get_archive_formats()]
        self.assertNotIn('xxx', formats)