80148920c9
- Image exporter detects GraphicsView background color - Corrected exporter filename handling for SVG export - ViewBox no longer attempts to deregister itself while python is exiting - Speedup for conversion using np.array(MetaArray_instance) - GLGraphicsItem updates immediately when its GL options have changed - Corrected some GL shader program bugs for nVidia drivers - Fixed coordinate mapping bug in functions.transformCoordinates - Fixed PySide import error
15 lines
480 B
Python
15 lines
480 B
Python
import os
|
|
dirs = [
|
|
('graphicsItems', 'graphicsItems'),
|
|
('3dgraphics', 'opengl/items'),
|
|
('widgets', 'widgets'),
|
|
]
|
|
|
|
path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')
|
|
for a, b in dirs:
|
|
rst = [os.path.splitext(x)[0].lower() for x in os.listdir(os.path.join(path, 'documentation', 'source', a))]
|
|
py = [os.path.splitext(x)[0].lower() for x in os.listdir(os.path.join(path, b))]
|
|
print a
|
|
for x in set(py) - set(rst):
|
|
print " ", x
|