This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## | |
## PySide6 version of the QCompleter example. | |
## | |
## "The Completer example shows how to provide string-completion facilities for an " | |
## "input widget based on data provided by a model." | |
## | |
import sys |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------------------------------------------- | |
-- [ApplProgsWithHashIssues] | |
-------------------------------------------------------------------------------- | |
/** @file | |
ETS 4 Database Schema - table for ApplicationPrograms with possible invalid hashes after Upgrade from Schema 1.0 to 1.1 | |
*/ | |
-- MediumType -- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xs:schema xmlns:knx="http://knx.org/xml/project/11" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://knx.org/xml/project/11" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> | |
<!-- Simple types --> | |
<xs:simpleType name="IDREF"> | |
<xs:restriction base="xs:NCName"/> | |
</xs:simpleType> | |
<xs:simpleType name="IDREFS"> | |
<xs:list itemType="knx:IDREF"/> | |
</xs:simpleType> | |
<xs:simpleType name="Capabilities_t"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import ctypes | |
from ctypes import wintypes | |
import struct | |
PROV_RSA_FULL = 1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
import enum | |
# | |
# Prerequisits: | |
# ------------- | |
# If you are using Python < 3.4 run `pip install enum34`. | |
# | |
# Problem Definition | |
# ------------------ |