Add pyhwp2-1.0.1
Browse files
pyhwp2-1.0.1/src/hwp5/binmodel/tagid78_forbidden_char.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
#
|
| 3 |
+
# pyhwp : hwp file format parser in python
|
| 4 |
+
# Copyright (C) 2010-2023 mete0r <https://github.com/mete0r>
|
| 5 |
+
#
|
| 6 |
+
# This program is free software: you can redistribute it and/or modify
|
| 7 |
+
# it under the terms of the GNU Affero General Public License as published by
|
| 8 |
+
# the Free Software Foundation, either version 3 of the License, or
|
| 9 |
+
# (at your option) any later version.
|
| 10 |
+
#
|
| 11 |
+
# This program is distributed in the hope that it will be useful,
|
| 12 |
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 13 |
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 14 |
+
# GNU Affero General Public License for more details.
|
| 15 |
+
#
|
| 16 |
+
# You should have received a copy of the GNU Affero General Public License
|
| 17 |
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| 18 |
+
#
|
| 19 |
+
from __future__ import absolute_import
|
| 20 |
+
from __future__ import print_function
|
| 21 |
+
from __future__ import unicode_literals
|
| 22 |
+
|
| 23 |
+
from hwp5.binmodel._shared import RecordModel
|
| 24 |
+
from hwp5.tagids import HWPTAG_FORBIDDEN_CHAR
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
class ForbiddenChar(RecordModel):
|
| 28 |
+
tagid = HWPTAG_FORBIDDEN_CHAR
|
| 29 |
+
# TODO
|
pyhwp2-1.0.1/stdeb.cfg
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[pyhwp]
|
| 2 |
+
Forced-Upstream-Version: 0.1~b2
|