mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #704: image file duplication bug.
This commit is contained in:
parent
b3108306cd
commit
020daea23f
2
CHANGES
2
CHANGES
@ -1,6 +1,8 @@
|
|||||||
Release 1.0.8 (in development)
|
Release 1.0.8 (in development)
|
||||||
==============================
|
==============================
|
||||||
|
|
||||||
|
* #704: Fix image file duplication bug.
|
||||||
|
|
||||||
* #677: Fix parsing of multiple signatures in C++ domain.
|
* #677: Fix parsing of multiple signatures in C++ domain.
|
||||||
|
|
||||||
* #637: Ignore Emacs lock files when looking for source files.
|
* #637: Ignore Emacs lock files when looking for source files.
|
||||||
|
@ -113,11 +113,11 @@ class FilenameUniqDict(dict):
|
|||||||
return uniquename
|
return uniquename
|
||||||
|
|
||||||
def purge_doc(self, docname):
|
def purge_doc(self, docname):
|
||||||
for filename, (docs, _) in self.items():
|
for filename, (docs, unique) in self.items():
|
||||||
docs.discard(docname)
|
docs.discard(docname)
|
||||||
if not docs:
|
if not docs:
|
||||||
del self[filename]
|
del self[filename]
|
||||||
self._existing.discard(filename)
|
self._existing.discard(unique)
|
||||||
|
|
||||||
def __getstate__(self):
|
def __getstate__(self):
|
||||||
return self._existing
|
return self._existing
|
||||||
|
Loading…
Reference in New Issue
Block a user