文件操作 - crash_test_dummy.py
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/twisted/test/crash_test_dummy.py
编辑文件内容
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. from zope.interface import Interface, implementer from twisted.python import components def foo(): return 2 class X: def __init__(self, x): self.x = x def do(self): # print 'X',self.x,'doing!' pass class XComponent(components.Componentized): pass class IX(Interface): pass @implementer(IX) class XA(components.Adapter): def method(self): # Kick start :( pass components.registerAdapter(XA, X, IX)
修改文件时间
将文件时间修改为当前时间的前一年
删除文件