MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / normcase

Function normcase

pydevd_file_utils.py:349–354  ·  view source on GitHub ↗
(s, NORMCASE_CACHE={})

Source from the content-addressed store, hash-verified

347
348
349def normcase(s, NORMCASE_CACHE={}):
350 try:
351 return NORMCASE_CACHE[s]
352 except:
353 normalized = NORMCASE_CACHE[s] = _default_normcase(s)
354 return normalized
355
356
357_ide_os = "WINDOWS" if IS_WINDOWS else "UNIX"

Calls

no outgoing calls

Tested by 3

test_exception_detailsFunction · 0.68