SeattleTestbed / repy_v2

Seattle Testbed's Repy ("Restricted Python") sandbox, version 2
MIT License
12 stars 50 forks source link

Fix #137, issue references in comments #138

Closed aaaaalbert closed 7 years ago

aaaaalbert commented 7 years ago

This set of commits addresses #137 by making uniform all issue references in comments in the repy_v2 code base. (I used the org--repo--issue format throughout, see also secure-systems-lab/code-style-guidelines#12.)

Please squash-merge this PR if you're happy with it. The separate commits are not terribly interesting, I just tried (and failed!) to go file-by-file.

BTW, here is how I found issue references in the code:

grep "#[0-9]" *
grep -i ticket *   # Trac called these things "tickets"
grep -i issue *    # This is the name we use now/on GitHub
aaaaalbert commented 7 years ago

Thanks a lot @lukpueh!