mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-18 16:12:42 +01:00
Make world.py py3k-friendly.
This commit is contained in:
parent
c4dfa55d65
commit
7f0e1115b5
@ -113,7 +113,13 @@ def debugFlush(s=''):
|
|||||||
|
|
||||||
def upkeep():
|
def upkeep():
|
||||||
"""Does upkeep (like flushing, garbage collection, etc.)"""
|
"""Does upkeep (like flushing, garbage collection, etc.)"""
|
||||||
sys.exc_clear() # Just in case, let's clear the exception info.
|
# Just in case, let's clear the exception info.
|
||||||
|
try:
|
||||||
|
sys.exc_clear()
|
||||||
|
except AttributeError:
|
||||||
|
# Python 3 does not have sys.exc_clear. The except statement clears
|
||||||
|
# the info itself (and we've just entered an except statement)
|
||||||
|
pass
|
||||||
if os.name == 'nt':
|
if os.name == 'nt':
|
||||||
try:
|
try:
|
||||||
import msvcrt
|
import msvcrt
|
||||||
@ -153,6 +159,7 @@ def upkeep():
|
|||||||
#if registryFilename is not None:
|
#if registryFilename is not None:
|
||||||
# registry.open(registryFilename)
|
# registry.open(registryFilename)
|
||||||
if not dying:
|
if not dying:
|
||||||
|
if sys.version_info[0] < 3:
|
||||||
log.debug('Regexp cache size: %s', len(sre._cache))
|
log.debug('Regexp cache size: %s', len(sre._cache))
|
||||||
log.debug('Pattern cache size: %s', len(ircutils._patternCache))
|
log.debug('Pattern cache size: %s', len(ircutils._patternCache))
|
||||||
log.debug('HostmaskPatternEqual cache size: %s',
|
log.debug('HostmaskPatternEqual cache size: %s',
|
||||||
|
Loading…
Reference in New Issue
Block a user