Home
last modified time | relevance | path

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

/third_party/python/Lib/test/
Dtest_msilib.py6 msilib = import_module('msilib') variable
7 import msilib.schema
12 db = msilib.init_database(
14 msilib.schema,
60 title = sum_info.GetProperty(msilib.PID_TITLE)
63 sum_info.SetProperty(msilib.PID_TITLE, "a" * 999)
64 title = sum_info.GetProperty(msilib.PID_TITLE)
67 sum_info.SetProperty(msilib.PID_TITLE, "a" * 1000)
68 title = sum_info.GetProperty(msilib.PID_TITLE)
71 sum_info.SetProperty(msilib.PID_TITLE, "a" * 1001)
[all …]
/third_party/python/Lib/distutils/command/
Dbdist_msi.py17 import msilib
18 from msilib import schema, sequence, text
19 from msilib import Directory, Feature, Dialog, add_data
249 self.db = msilib.init_database(installer_name, schema,
250 product_name, msilib.gen_uuid(),
252 msilib.add_tables(self.db, sequence)
277 cab = msilib.CAB("distfiles")
352 if msilib.Win64:
412 [("PreInstall", msilib.Binary(scriptfn))
/third_party/python/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
/third_party/python/Lib/msilib/
Dtext.py1 import msilib,os;dirname=os.path.dirname(__file__)
/third_party/python/Misc/NEWS.d/
D3.6.4rc1.rst297 Make :meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the
319 :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.10.0a1.rst2989 :mod:`msilib` now supports creating CAB files with non-ASCII file path and
2999 Fixed support of non-ASCII names in functions :func:`msilib.OpenDatabase`
3000 and :func:`msilib.init_database` and non-ASCII SQL in method
3001 :meth:`msilib.Database.OpenView`.
D3.7.0a3.rst353 Make :meth:`msilib.SummaryInformation.GetProperty` return ``None`` when the
399 :func:`msilib.OpenDatabase` now raises a better exception message when it
D3.8.0b1.rst512 Fix the error handling in :meth:`msilib.SummaryInformation.GetProperty`.
541 :meth:`msilib.Directory.start_component()` no longer fails if *keyfile* is
D3.5.2rc1.rst1272 Fixed AttributeError in msilib.Directory.glob().
D3.6.0a1.rst1987 Fixed AttributeError in msilib.Directory.glob().
D3.8.0a1.rst3722 Restore ``msilib.Win64`` to preserve backwards compatibility since it's
7952 Correctly handle string length in ``msilib.SummaryInfo.GetProperty()`` to
/third_party/python/Doc/whatsnew/
D3.7.rst1133 msilib section in Improved Modules
1136 The new :meth:`Database.Close() <msilib.Database.Close>` method can be used
D2.5.rst1425 * New module: the :mod:`msilib` module allows creating Microsoft Installer
D2.6.rst3138 * The :mod:`msilib` module's :class:`Record` object
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch2224 + msilib \
/third_party/python/Misc/
DHISTORY529 - Issue #21931: msilib.FCICreate() now raises TypeError in the case of a bad
9866 - Issue #11696: Fix ID generation in msilib.
19008 - A library msilib to generate Windows Installer files, and a distutils