Skip to content

Commit f0dea33

Browse files
committed
Small update
1 parent 6ca2a0e commit f0dea33

6 files changed

Lines changed: 13089 additions & 31222 deletions

File tree

foxfile.py

Lines changed: 0 additions & 242 deletions
This file was deleted.

pyfoxfile/__init__.py

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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__

foxfile_py3.py renamed to pyfoxfile/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from io import BytesIO
2727
from typing import Optional, Dict, Any
2828

29-
import pyfoxfile_py3 as pyfoxfile
29+
import pyfoxfile
3030

3131
# Keep original behavior: log to stdout with simple message format.
3232
logging.basicConfig(format="%(message)s", stream=sys.stdout, level=logging.DEBUG)

0 commit comments

Comments
 (0)