comment.py
来自「Python Development Environment (Python I」· Python 代码 · 共 23 行
PY
23 行
########################################################################
#
# File Name: Comment.py
#
# Documentation: http://docs.4suite.org/4DOM/Comment.py.html
#
"""
WWW: http://4suite.org/4DOM e-mail: support@4suite.org
Copyright (c) 2000 Fourthought Inc, USA. All Rights Reserved.
See http://4suite.org/COPYRIGHT for license and copyright information
"""
from xml.dom import Node
from CharacterData import CharacterData
class Comment(CharacterData):
nodeType = Node.COMMENT_NODE
def __init__(self,ownerDocument,data):
CharacterData.__init__(self, ownerDocument, data)
self.__dict__['__nodename'] = '#comment'
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?