Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
21
venv/Lib/site-packages/IPython/core/prompts.py
Normal file
21
venv/Lib/site-packages/IPython/core/prompts.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Being removed
|
||||
"""
|
||||
|
||||
class LazyEvaluate(object):
|
||||
"""This is used for formatting strings with values that need to be updated
|
||||
at that time, such as the current time or working directory."""
|
||||
def __init__(self, func, *args, **kwargs):
|
||||
self.func = func
|
||||
self.args = args
|
||||
self.kwargs = kwargs
|
||||
|
||||
def __call__(self, **kwargs):
|
||||
self.kwargs.update(kwargs)
|
||||
return self.func(*self.args, **self.kwargs)
|
||||
|
||||
def __str__(self):
|
||||
return str(self())
|
||||
|
||||
def __format__(self, format_spec):
|
||||
return format(self(), format_spec)
|
Loading…
Add table
Add a link
Reference in a new issue