鏡像自
http://git.whoc.org.uk/git/password-manager.git
已同步 2026-01-05 07:17:03 +01:00
14 行
239 B
Python
可執行檔
14 行
239 B
Python
可執行檔
#!/usr/bin/env python
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
from scriptLanguageBuilder import ScriptLanguageBuilder
|
|
|
|
class PythonBuilder(ScriptLanguageBuilder):
|
|
|
|
def name(self):
|
|
return "Python builder"
|
|
|
|
|
|
def relativePath(self):
|
|
return 'python'
|