Home
last modified time | relevance | path

Searched refs:msilib (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_msilib.py5 msilib = import_module('msilib') variable
6 import msilib.schema
11 db = msilib.init_database(
13 msilib.schema,
49 title = sum_info.GetProperty(msilib.PID_TITLE)
52 sum_info.SetProperty(msilib.PID_TITLE, "a" * 999)
53 title = sum_info.GetProperty(msilib.PID_TITLE)
56 sum_info.SetProperty(msilib.PID_TITLE, "a" * 1000)
57 title = sum_info.GetProperty(msilib.PID_TITLE)
60 sum_info.SetProperty(msilib.PID_TITLE, "a" * 1001)
[all …]
/external/python/cpython2/Lib/test/
Dtest_msilib.py5 msilib = import_module('msilib') variable
17 msilib.make_id("short"), "short")
19 msilib.make_id("nochangerequired"), "nochangerequired")
21 msilib.make_id("one.dot"), "one.dot")
23 msilib.make_id("_"), "_")
25 msilib.make_id("a"), "a")
31 msilib.make_id("9.short"), "_9.short")
33 msilib.make_id(".short"), "_.short")
37 msilib.make_id(".s\x82ort"), "_.s_ort")
39 msilib.make_id(".s\x82o?*+rt"), "_.s_o___rt")
/external/python/cpython2/Tools/msi/
Dmsi.py4 import msilib, schema, sequence, os, glob, time, re, shutil, zipfile
5 from msilib import Feature, CAB, Directory, Dialog, Binary, add_data
80 product_code = msilib.gen_uuid()
147 if msilib.Win64:
179 msilib.set_arch_from_file(dll_path)
180 if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"):
183 if msilib.Win64:
199 if msilib.Win64:
206 msilib.reset()
220 if msilib.Win64:
[all …]
Duisample.py2 import msilib,os;dirname=os.path.dirname(__file__)
50 (u'bannrbmp', msilib.Binary(os.path.join(dirname,"bannrbmp.bin"))),
51 (u'completi', msilib.Binary(os.path.join(dirname,"completi.bin"))),
52 (u'custicon', msilib.Binary(os.path.join(dirname,"custicon.bin"))),
53 (u'dlgbmp', msilib.Binary(os.path.join(dirname,"dlgbmp.bin"))),
54 (u'exclamic', msilib.Binary(os.path.join(dirname,"exclamic.bin"))),
55 (u'info', msilib.Binary(os.path.join(dirname,"info.bin"))),
56 (u'insticon', msilib.Binary(os.path.join(dirname,"insticon.bin"))),
57 (u'New', msilib.Binary(os.path.join(dirname,"New.bin"))),
58 (u'removico', msilib.Binary(os.path.join(dirname,"removico.bin"))),
[all …]
Dschema.py1 from msilib import Table
/external/python/cpython3/Lib/distutils/command/
Dbdist_msi.py17 import msilib
18 from msilib import schema, sequence, text
19 from msilib import Directory, Feature, Dialog, add_data
243 self.db = msilib.init_database(installer_name, schema,
244 product_name, msilib.gen_uuid(),
246 msilib.add_tables(self.db, sequence)
271 cab = msilib.CAB("distfiles")
346 if msilib.Win64:
406 [("PreInstall", msilib.Binary(scriptfn))
/external/python/cpython2/Lib/distutils/command/
Dbdist_msi.py19 import msilib
20 from msilib import schema, sequence, text
21 from msilib import Directory, Feature, Dialog, add_data
245 self.db = msilib.init_database(installer_name, schema,
246 product_name, msilib.gen_uuid(),
248 msilib.add_tables(self.db, sequence)
273 cab = msilib.CAB("distfiles")
348 if msilib.Win64:
408 [("PreInstall", msilib.Binary(scriptfn))
/external/python/cpython3/Doc/library/
Dmsilib.rst1 :mod:`msilib` --- Read and write Microsoft Installer files
4 .. module:: msilib
11 **Source code:** :source:`Lib/msilib/__init__.py`
17 The :mod:`msilib` supports the creation of Microsoft Installer (``.msi``) files.
26 version of ``msilib``).
76 ``_Validation_records`` attributes; typically, :mod:`msilib.schema` should be
427 Make this feature the current feature of :mod:`msilib`. New components are
441 :mod:`msilib` provides several classes that wrap the GUI tables in an MSI
542 :mod:`msilib` provides a few subpackages that contain only schema and table
Dwindows.rst12 msilib.rst
/external/python/cpython3/Lib/msilib/
Dtext.py1 import msilib,os;dirname=os.path.dirname(__file__)
/external/python/cpython2/Doc/library/
Dwindows.rst12 msilib.rst
Dmsilib.rst1 :mod:`msilib` --- Read and write Microsoft Installer files
4 .. module:: msilib
15 The :mod:`msilib` supports the creation of Microsoft Installer (``.msi``) files.
24 version of ``msilib``).
74 ``_Validation_records`` attributes; typically, :mod:`msilib.schema` should be
420 Make this feature the current feature of :mod:`msilib`. New components are
434 :mod:`msilib` provides several classes that wrap the GUI tables in an MSI
535 :mod:`msilib` provides a few subpackages that contain only schema and table
/external/python/cpython2/Lib/msilib/
Dtext.py1 import msilib,os;dirname=os.path.dirname(__file__)
/external/python/cpython2/Misc/
Dmaintainers.rst153 msilib loewis
/external/python/cpython3/Misc/NEWS.d/
D3.6.4rc1.rst298 Make :meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the
321 :func:`msilib.OpenDatabase` now raises a better exception message when it
D3.5.0b1.rst335 msilib.FCICreate() now raises TypeError in the case of a bad argument
D3.7.0a3.rst354 Make :meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the
401 :func:`msilib.OpenDatabase` now raises a better exception message when it
D3.7.3rc1.rst982 Correctly handle string length in ``msilib.SummaryInfo.GetProperty()`` to
D3.7.1rc1.rst626 Restore ``msilib.Win64`` to preserve backwards compatibility since it's
D3.5.2rc1.rst1273 Fixed AttributeError in msilib.Directory.glob().
D3.6.0a1.rst1988 Fixed AttributeError in msilib.Directory.glob().
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst412 Add GetInteger and GetString methods for msilib.Record objects.
D2.7.12rc1.rst688 Fixed AttributeError in msilib.Directory.glob().
D2.7.2rc1.rst611 Fix ID generation in msilib.
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1111 msilib section in Improved Modules
1114 The new :meth:`Database.Close() <msilib.Database.Close>` method can be used

12