This commit is contained in:
Robert Helmer 2012-01-17 12:21:54 -08:00
Родитель ce1b62ecb7
Коммит 904237b6c2
5 изменённых файлов: 15 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
def analyze(data):
n = len(data)
if n > 1:

Просмотреть файл

@ -1,3 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import sqlalchemy as sa
from sqlalchemy.ext.sqlsoup import SqlSoup

Просмотреть файл

@ -1,3 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import logging as log
try:
import simplejson as json

Просмотреть файл

@ -1,3 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import time, urllib, urllib2, re, os, sys
import logging as log
import cPickle as pickle

Просмотреть файл

@ -1,3 +1,6 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
from analyze_talos import bugs_from_comments
assert bugs_from_comments("Bug 12345") == [12345]