Changeset 422
- Timestamp:
- 09/27/07 19:01:22 (1 year ago)
- Files:
-
- pygtkimageview/src/gtkimageview.defs (modified) (1 diff)
- pygtkimageview/tests/test_module.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pygtkimageview/src/gtkimageview.defs
r417 r422 105 105 ) 106 106 107 (define-method invalidate 108 (of-object "GdkPixbufDrawCache") 109 (c-name "gdk_pixbuf_draw_cache_invalidate") 110 (return-type "none") 111 ) 112 107 113 ;; Enumerations and flags ... 108 114 pygtkimageview/tests/test_module.py
r421 r422 306 306 except TypeError: 307 307 assert True 308 309 def test_invalidate(): 310 ''' 311 Sanity test for the PixbufDrawCache.invalidate() method. 312 ''' 313 cache = gtkimageview.PixbufDrawCache() 314 assert hasattr(cache, 'invalidate')
