~ubuntu-branches/ubuntu/natty/pygtk/natty-proposed

« back to all changes in this revision

Viewing changes to tests/test_gdk.py

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-01-07 11:08:47 UTC
  • mfrom: (1.2.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107110847-f5av7e1ttudh7ra6
Tags: 2.17.0-0ubuntu1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
    def testBitmapCreateFromData(self):
14
14
        gtk.gdk.bitmap_create_from_data(None, '\x00', 1, 1)
15
15
 
16
 
    def testPixmapCreateFromData(self):
17
 
        black = gtk.gdk.color_parse('black')
18
 
        gtk.gdk.pixmap_create_from_data(None, '\x00', 1, 1, 1,
19
 
                                        black, black)
 
16
    #def testPixmapCreateFromData(self):
 
17
    #    black = gtk.gdk.color_parse('black')
 
18
    #    gtk.gdk.pixmap_create_from_data(None, '\x00', 1, 1, 1,
 
19
    #                                    black, black)
20
20
 
21
21
    def _testWindow(self):
22
22
        common = {'finalized': False}