More code review changes:

* Added extension to the Sphinx docs.
* Fixed unicode issues.
This commit is contained in:
Brian Granger 2012-05-30 22:01:34 -07:00
parent 13cc762f4c
commit 26e8363d46

View File

@ -148,6 +148,7 @@ have['wx'] = test_for('wx')
have['wx.aui'] = test_for('wx.aui')
have['qt'] = test_for('IPython.external.qt')
have['sqlite3'] = test_for('sqlite3')
have['cython'] = test_for('Cython')
have['tornado'] = test_for('tornado.version_info', (2,1,0), callback=None)
@ -268,6 +269,9 @@ def make_exclude():
ipjoin('zmq', 'pylab'),
])
if not have['cython']:
exclusions.extend([ipjoin('extensions', 'cythonmagic')])
if not have['tornado']:
exclusions.append(ipjoin('frontend', 'html'))