このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
ben
/
mwparserfromhell
ミラー元
https://github.com/earwig/mwparserfromhell
ウォッチ
1
スター
1
フォーク
0
コード
リリース
24
アクティビティ
ソースを参照
Merge pull request
#3
from Riamse/develop
Forgot to add compat.py (
#1
)
tags/v0.1
Ben Kurtovic
12年前
親
dea1612d77
c4fd7b7468
コミット
ea28e991d9
1個のファイルの変更
、
16行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+16
-0
mwparserfromhell/compat.py
+ 16
- 0
mwparserfromhell/compat.py
ファイルの表示
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
import sys
v = sys.version_info[0]
if v >= 3:
bytes = bytes
str = str
basestring = (str, bytes)
import html.entities as htmlentitydefs
else:
bytes = str
str = unicode
basestring = basestring
import htmlentitydefs
書き込み
プレビュー
読み込み中…
キャンセル
保存