uawdijnntqw1x1x1
IP : 216.73.216.207
Hostname : server86.web-hosting.com
Kernel : Linux server86.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
servlmvm
/
..
/
.
/
..
/
opt
/
hc_php
/
..
/
alt
/
python34
/
lib64
/
python3.4
/
lib2to3
/
fixes
/
fix_intern.py
/
/
# Copyright 2006 Georg Brandl. # Licensed to PSF under a Contributor Agreement. """Fixer for intern(). intern(s) -> sys.intern(s)""" # Local imports from .. import fixer_base from ..fixer_util import ImportAndCall, touch_import class FixIntern(fixer_base.BaseFix): BM_compatible = True order = "pre" PATTERN = """ power< 'intern' trailer< lpar='(' ( not(arglist | argument<any '=' any>) obj=any | obj=arglist<(not argument<any '=' any>) any ','> ) rpar=')' > after=any* > """ def transform(self, node, results): names = ('sys', 'intern') new = ImportAndCall(node, results, names) touch_import(None, 'sys', node) return new
/home/servlmvm/.././../opt/hc_php/../alt/python34/lib64/python3.4/lib2to3/fixes/fix_intern.py