home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / gui / notifications / __init__.pyo (.txt) next >
Encoding:
Python Compiled Bytecode  |  2009-02-26  |  610 b   |  16 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. from __future__ import with_statement
  5. from gui import skin
  6. from util import odict, odict_from_dictlist
  7. import syck
  8.  
  9. def underscores_to_dots(d):
  10.     for key in d.keys()[:]:
  11.         if key and '_' in key:
  12.             d[key.replace('_', '.')] = d.pop(key)
  13.             continue
  14.     
  15.  
  16.