|
| 1 | +#!/usr/bin/env python |
| 2 | +# -*- coding: UTF-8 -*- |
| 3 | + |
| 4 | +''' |
| 5 | + This program is free software; you can redistribute it and/or modify |
| 6 | + it under the terms of the Revised BSD License. |
| 7 | +
|
| 8 | + This program is distributed in the hope that it will be useful, |
| 9 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | + Revised BSD License for more details. |
| 12 | +
|
| 13 | + Copyright 2018-2026 Cool Dude 2k - http://idb.berlios.de/ |
| 14 | + Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/ |
| 15 | + Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski |
| 16 | +
|
| 17 | + $FileInfo: pyfile.py - Last Update: 2/8/2026 Ver. 0.28.8 RC 1 - Author: cooldude2k $ |
| 18 | +''' |
| 19 | + |
| 20 | +from .pyfile import * |
| 21 | +from . import pyfile |
| 22 | + |
| 23 | +__project__ = pyfile.__project__ |
| 24 | +__program_name__ = pyfile.__program_name__ |
| 25 | +__file_format_name__ = pyfile.__file_format_name__ |
| 26 | +__file_format_magic__ = pyfile.__file_format_magic__ |
| 27 | +__file_format_len__ = pyfile.__file_format_len__ |
| 28 | +__file_format_hex__ = pyfile.__file_format_hex__ |
| 29 | +__file_format_delimiter__ = pyfile.__file_format_delimiter__ |
| 30 | +__file_format_dict__ = pyfile.__file_format_dict__ |
| 31 | +__file_format_default__ = pyfile.__file_format_default__ |
| 32 | +__file_format_multi_dict__ = pyfile.__file_format_multi_dict__ |
| 33 | +__use_new_style__ = pyfile.__use_new_style__ |
| 34 | +__use_advanced_list__ = pyfile.__use_advanced_list__ |
| 35 | +__use_alt_inode__ = pyfile.__use_alt_inode__ |
| 36 | +__project_url__ = pyfile.__project_url__ |
| 37 | +__version_info__ = pyfile.__version_info__ |
| 38 | +__version_date_info__ = pyfile.__version_date_info__ |
| 39 | +__version_date__ = pyfile.__version_date__ |
| 40 | +__version_date_plusrc__ = pyfile.__version_date_plusrc__ |
| 41 | +__version__ = pyfile.__version__ |
0 commit comments