mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Samuel L. Bayer:
- forced new done origins to set errors if they're in self.bad (fixes bug where only the first of a number of errorful references to a link is reported under some circumstances) - suppressed adding duplicates to self.todo list (cleans up printout in wcgui details)
This commit is contained in:
parent
d7b147b040
commit
dbd5c3e63b
1 changed files with 6 additions and 1 deletions
|
@ -364,10 +364,15 @@ class Checker:
|
|||
def newdonelink(self, url, origin):
|
||||
self.done[url].append(origin)
|
||||
self.note(3, " Done link %s", url)
|
||||
if self.bad.has_key(url):
|
||||
source, rawlink = origin
|
||||
triple = url, rawlink, self.bad[url]
|
||||
self.seterror(source, triple)
|
||||
|
||||
def newtodolink(self, url, origin):
|
||||
if self.todo.has_key(url):
|
||||
self.todo[url].append(origin)
|
||||
if origin not in self.todo[url]:
|
||||
self.todo[url].append(origin)
|
||||
self.note(3, " Seen todo link %s", url)
|
||||
else:
|
||||
self.todo[url] = [origin]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue