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
env: | |
OSX v10.4.11 | |
Python 2.5 | |
mercurial v1.2.1 | |
git v1.6.3.1 | |
repos: | |
using python repository as of 2009-06-18 |
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 python3 | |
from PyQt5.QtGui import QPainter | |
from PyQt5.QtCore import * | |
from PyQt5.QtQuick import * | |
from PyQt5.QtWidgets import * | |
class Item(QQuickPaintedItem): | |
def __init__(self, useBoundRect, parent=None): | |
super().__init__(parent) |
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
hw.ncpu: 1 | |
hw.byteorder: 1234 | |
hw.memsize: 527433728 | |
hw.activecpu: 1 | |
hw.physicalcpu: 1 | |
hw.physicalcpu_max: 1 | |
hw.logicalcpu: 1 | |
hw.logicalcpu_max: 1 | |
hw.cputype: 12 | |
hw.cpusubtype: 9 |
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
#ifndef WIZ_UTILITY_INT128_H | |
#define WIZ_UTILITY_INT128_H | |
#include <cassert> | |
#include <cstdint> | |
#include <cstddef> | |
#include <cstring> | |
#include <cstdlib> | |
#include <utility> | |
#include <string> |