Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9c191c2

Browse files
author
Steve Chaplin
committed
SC 2005/01/30
svn path=/trunk/matplotlib/; revision=899
1 parent 6f27cd6 commit 9c191c2

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
New entries should be added at the top
22

3+
2005-01-30 Added backend_qtagg.py provided by Sigve Tjora - SC
4+
35
2005-01-28 Replaced examples/interactive.py with an updated script from
46
Fernando Perez - SC
57

lib/matplotlib/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,8 @@ def rcdefaults():
762762

763763
_knownBackends = {
764764
'Agg':1, 'Cairo':1, 'FltkAgg':1, 'GD':1, 'GDK':1, 'GTK':1, 'GTKAgg':1,
765-
'GTKCairo':1, 'Paint':1, 'PS':1, 'SVG':1, 'Template':1, 'TkAgg':1, 'WX':1,
766-
'WXAgg':1, }
765+
'GTKCairo':1, 'Paint':1, 'PS':1, 'QtAgg':1, 'SVG':1, 'Template':1,
766+
'TkAgg':1, 'WX':1, 'WXAgg':1, }
767767

768768

769769
known = _knownBackends.keys()

lib/matplotlib/backends/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
__all__ = ['backend','show','draw_if_interactive','error_msg',
66
'new_figure_manager', 'backend_version']
77

8-
interactive_bk = ['GTK','GTKAgg','GTKCairo','FltkAgg','TkAgg','WX','WXAgg',]
8+
interactive_bk = ['GTK','GTKAgg','GTKCairo','FltkAgg','QtAgg', 'TkAgg',
9+
'WX','WXAgg',]
910
non_interactive_bk = ['Agg','Cairo','GD','GDK','Paint','PS','SVG','Template']
1011
all_backends = interactive_bk + non_interactive_bk
1112

0 commit comments

Comments
 (0)