1 Star 0 Fork 8

zjyabsa/python-sphinxcontrib-bibtex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
python-sphinxcontrib-bibtex-orderedset.patch 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
sigui 提交于 2020-03-12 19:26 . yes3
--- requirements.txt.orig 2018-04-19 03:45:15.000000000 -0600
+++ requirements.txt 2018-04-19 18:32:13.568268679 -0600
@@ -2,5 +2,5 @@ pybtex>=0.20
pybtex-docutils>=0.2.0
six>=1.4.1
Sphinx>=1.0
-oset>=0.1.3
+orderedset>=2.0
--- sphinxcontrib/bibtex/cache.py.orig 2018-04-19 03:45:15.000000000 -0600
+++ sphinxcontrib/bibtex/cache.py 2018-04-19 18:32:13.584268627 -0600
@@ -24,7 +24,7 @@ except ImportError: # pragma: no cover
import ast
import collections
import copy
-from oset import oset
+from orderedset import OrderedSet
import re
@@ -200,7 +200,7 @@ class Cache:
self.bibfiles = {}
self._bibliographies = collections.defaultdict(dict)
- self._cited = collections.defaultdict(oset)
+ self._cited = collections.defaultdict(OrderedSet)
self._enum_count = {}
def purge(self, docname):
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zjyabsa/python-sphinxcontrib-bibtex.git
[email protected]:zjyabsa/python-sphinxcontrib-bibtex.git
zjyabsa
python-sphinxcontrib-bibtex
python-sphinxcontrib-bibtex
master

搜索帮助