Show
Ignore:
Timestamp:
10/08/08 19:21:58 (3 months ago)
Author:
CJP
Message:

Fix python2.6 deprecation warning for sets module

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • wxPython/3rdParty/Editra/src/extern/pkg_resources.py

    r49250 r56179  
    1515 
    1616import sys, os, zipimport, time, re, imp, new 
    17 from sets import ImmutableSet 
     17 
     18# Fix for Python 2.6 deprecation warning 
     19try: 
     20    ImmutableSet = frozenset 
     21except NameError: 
     22    from sets import ImmutableSet 
     23 
    1824from os import utime, rename, unlink    # capture these to bypass sandboxing 
    1925from os import open as os_open