MCPcopy Create free account

hub / github.com/ipython/ipython / functions

Functions3,293 in github.com/ipython/ipython

↓ 1 callersFunctionmerge_branch
try to merge the givent branch into the current one If something does not goes smoothly, merge is aborted Returns True if merge succ
tools/git-mpr.py:21
↓ 1 callersFunctionmerge_pr
try to merge the branch of PR `num` into current branch
tools/git-mpr.py:43
↓ 1 callersFunctionmini_interactive_loop
Minimal example of the logic of an interactive interpreter loop. This serves as an example, and it is used by the test system with a fake raw
IPython/core/tests/test_inputsplitter.py:25
↓ 1 callersFunctionmodule_not_available
Can module be imported? Returns true if module does NOT import. This is used to make a decorator to skip tests that require module to be ava
IPython/testing/decorators.py:266
↓ 1 callersFunctionmonkeypatch_xunit
()
IPython/testing/iptest.py:84
↓ 1 callersFunctionmost_common
Most common elements occurring more then `n` times
docs/autogen_shortcuts.py:25
↓ 1 callersFunctionmulti_filter_str
Yield readable conditional filter
docs/autogen_shortcuts.py:34
↓ 1 callersFunctionnewline_autoindent_outer
Return a function suitable for inserting a indented newline after the cursor. Fancier version of deprecated ``newline_with_copy_margin`` whi
IPython/terminal/shortcuts.py:231
↓ 1 callersFunctionnewline_or_execute_outer
(shell)
IPython/terminal/shortcuts.py:107
↓ 1 callersFunctionobject_info
Make an object info dict with all fields present.
IPython/core/oinspect.py:84
↓ 1 callersMethodobject_inspect_mime
Get object info as a mimebundle of formatted representations. A mimebundle is a dictionary, keyed by mime-type. It must always have t
IPython/core/interactiveshell.py:1781
↓ 1 callersMethodobject_inspect_text
Get object info as formatted text
IPython/core/interactiveshell.py:1777
↓ 1 callersFunctionon_off
Return an ON/OFF string for a 1/0 input. Simple utility function.
IPython/core/magic.py:53
↓ 1 callersFunctiononlyif
The reverse from skipif, see skipif for details.
IPython/testing/decorators.py:254
↓ 1 callersMethodoptions
(self, parser, env=os.environ)
IPython/testing/plugin/ipdoctest.py:727
↓ 1 callersMethodout_prompt_tokens
(self)
IPython/terminal/prompts.py:53
↓ 1 callersMethodoutput
(self, tokens)
IPython/core/inputtransformer.py:155
↓ 1 callersFunctionpage
Display content in a pager, piping through a pager after a certain length. data can be a mime-bundle dict, supplying multiple representations
IPython/core/page.py:237
↓ 1 callersFunctionpage_dumb
Very dumb 'pager' in Python, for when nothing else works. Only moves forward, same interface as page(), except for pager_cmd and mode.
IPython/core/page.py:56
↓ 1 callersFunctionpage_more
Smart pausing between pages @return: True if need print more lines, False if quit
IPython/core/page.py:324
↓ 1 callersFunctionpager_page
Display a string, piping through a pager after a certain length. strng can be a mime-bundle dict, supplying multiple representations, key
IPython/core/page.py:127
↓ 1 callersFunctionparse_breakpoint
Returns (file, line) for file:line and (current_file, line) for line
IPython/core/magics/execution.py:1467
↓ 1 callersFunctionpartial_tokens
Iterate over tokens from a possibly-incomplete string of code. This adds two special token types: INCOMPLETE_STRING and IN_MULTILINE_STATEMEN
IPython/core/inputsplitter.py:119
↓ 1 callersMethodpdef
Print the call signature for any callable object. If the object is a class, print the constructor information. Examples ----
IPython/core/magics/namespace.py:71
↓ 1 callersFunctionpickle_get_current_class
Original issue comes from pickle; hence the name.
IPython/extensions/tests/test_autoreload.py:128
↓ 1 callersFunctionpkg_commit_hash
Get short form of commit hash given directory `pkg_path` We get the commit hash from (in order of preference): * IPython.utils._sysinfo.comm
IPython/utils/sysinfo.py:30
↓ 1 callersFunctionpkg_info
Return dict describing the context of this package Parameters ---------- pkg_path : str path containing __init__.py for package
IPython/utils/sysinfo.py:68
↓ 1 callersFunctionposition_to_cursor
Convert the position of the cursor in text (0 indexed) to a line number(0-indexed) and a column number (0-indexed) pair Position should
IPython/core/completer.py:845
↓ 1 callersMethodpost_cmd
Method called after executing each block.
IPython/lib/demo.py:515
↓ 1 callersMethodpprint
Toggle pretty printing on/off.
IPython/core/magics/basic.py:305
↓ 1 callersMethodpre_cmd
Method called before executing each block.
IPython/lib/demo.py:511
↓ 1 callersMethodpreclean_input
(self, block)
IPython/terminal/magics.py:59
↓ 1 callersMethodprefilter_line
Prefilter a single input line as text. This method prefilters a single line of text by calling the transformers and then the checkers
IPython/core/prefilter.py:271
↓ 1 callersMethodprefilter_line_info
Prefilter a line that has been converted to a LineInfo object. This implements the checker/handler part of the prefilter pipe.
IPython/core/prefilter.py:246
↓ 1 callersMethodprefilter_lines
Prefilter multiple input lines of text. This is the main entry point for prefiltering multiple lines of input. This simply calls :me
IPython/core/prefilter.py:314
↓ 1 callersFunctionprepare_controllers
Returns two lists of TestController instances, those to run, and those not to run.
IPython/testing/iptestcontroller.py:203
↓ 1 callersMethodprepare_header
(self, etype, long_version=False)
IPython/core/ultratb.py:1096
↓ 1 callersMethodprepare_user_module
Prepare the module and namespace in which user code will be run. When IPython is started normally, both parameters are None: a new mo
IPython/core/interactiveshell.py:1280
↓ 1 callersFunctionpretty
Pretty print the object's representation.
IPython/lib/pretty.py:136
↓ 1 callersMethodprint_stack_entry
(self, frame_lineno, prompt_prefix='\n-> ', context=None)
IPython/core/debugger.py:364
↓ 1 callersMethodprint_stack_trace
(self, context=None)
IPython/core/debugger.py:334
↓ 1 callersMethodprocess_block
process block from the block_parser and return a list of processed lines
IPython/sphinxext/ipython_directive.py:692
↓ 1 callersMethodprocess_comment
Process data fPblock for COMMENT token.
IPython/sphinxext/ipython_directive.py:673
↓ 1 callersMethodprocess_image
# build out an image directive like # .. image:: somefile.png # :width 4in # # from an input like
IPython/sphinxext/ipython_directive.py:406
↓ 1 callersMethodprocess_input
Process data block for INPUT token.
IPython/sphinxext/ipython_directive.py:438
↓ 1 callersMethodprocess_output
Process data block for OUTPUT token.
IPython/sphinxext/ipython_directive.py:593
↓ 1 callersMethodprocess_pure_python
content is a list of strings. it is unedited directive content This runs it line by line in the InteractiveShell, prepends p
IPython/sphinxext/ipython_directive.py:787
↓ 1 callersMethodprompt_for_code
(self)
IPython/terminal/interactiveshell.py:451
↓ 1 callersFunctionprotect_filename
Escape a string to protect certain characters.
IPython/core/completer.py:233
↓ 1 callersMethodpsearch
Search for object in namespaces by wildcard. %psearch [options] PATTERN [OBJECT TYPE] Note: ? can be used as a synonym for %psearch,
IPython/core/magics/namespace.py:125
↓ 1 callersFunctionpseudo_input
Return a function that acts like raw_input but feeds the input list.
IPython/core/tests/test_inputsplitter.py:58
↓ 1 callersMethodpt_init
Initialize the prompt session and the prompt loop and store them in self.pt_app and self.pt_loop. Additional keyword argument
IPython/terminal/debugger.py:34
↓ 1 callersMethodpublish
Publish data and metadata to all frontends. See the ``display_data`` message in the messaging documentation for more details about th
IPython/core/displaypub.py:61
↓ 1 callersMethodpush
Push one or more lines of IPython input. This stores the given lines and returns a status code indicating whether the code forms a co
IPython/core/inputsplitter.py:680
↓ 1 callersMethodpush
(self, items)
IPython/extensions/tests/test_autoreload.py:55
↓ 1 callersFunctionpyfile
(fname)
IPython/core/tests/test_oinspect.py:54
↓ 1 callersFunctionpylight
(code)
IPython/core/oinspect.py:49
↓ 1 callersFunctionqtapi_version
Return which QString API has been set, if any Returns ------- The QString API version (1 or 2), or None if not set
IPython/external/qt_loaders.py:148
↓ 1 callersMethodquiet
Should we silence the display hook because of ';'?
IPython/core/displayhook.py:84
↓ 1 callersFunctionre_mark
(mark)
IPython/lib/demo.py:195
↓ 1 callersFunctionread_py_file
Read a Python file, using the encoding declared inside the file. Parameters ---------- filename : str The path to the file to r
IPython/utils/openpy.py:60
↓ 1 callersMethodrefresh_style
(self)
IPython/terminal/interactiveshell.py:190
↓ 1 callersMethodrefresh_style
(self)
IPython/core/interactiveshell.py:793
↓ 1 callersFunctionrefresh_variables
(ip)
IPython/extensions/storemagic.py:34
↓ 1 callersMethodregister_checker
Register a checker instance.
IPython/core/prefilter.py:188
↓ 1 callersMethodregister_handler
Register a handler instance by name with esc_strings.
IPython/core/prefilter.py:217
↓ 1 callersMethodregister_transformer
Register a transformer instance.
IPython/core/prefilter.py:152
↓ 1 callersMethodreload
Reload the raw data from file or URL.
IPython/core/display.py:652
↓ 1 callersMethodreload
Reload source from disk and initialize state.
IPython/lib/demo.py:300
↓ 1 callersFunctionremoved_co_newlocals
Return a function that do not create a new local scope. Given a function, create a clone of this function where the co_newlocal flag has bee
IPython/core/interactiveshell.py:130
↓ 1 callersFunctionreport
Summary report about a list of issues, printing number and title.
tools/github_stats.py:96
↓ 1 callersFunctionreport
Return a string with a summary report of test-related variables.
IPython/testing/iptestcontroller.py:248
↓ 1 callersMethodreset
Clear the session history, releasing all object references, and optionally open a new session.
IPython/core/history.py:587
↓ 1 callersMethodreset
Clear all internal namespaces, and attempt to release references to user objects. If new_session is True, a new history session will
IPython/core/interactiveshell.py:1412
↓ 1 callersMethodreset
Return, transformed any lines that the transformer has accumulated, and reset its internal state. Must be overridden by subcl
IPython/core/inputtransformer.py:58
↓ 1 callersMethodreset
(self)
IPython/core/inputtransformer.py:160
↓ 1 callersMethodreset_buffer
(self)
IPython/testing/iptest.py:307
↓ 1 callersMethodreset_compiler_flags
Reset compiler flags to default state.
IPython/core/compilerop.py:103
↓ 1 callersFunctionrestore_dhist
(ip)
IPython/extensions/storemagic.py:49
↓ 1 callersMethodrestore_sys_module_state
Restore the state of the sys module.
IPython/core/interactiveshell.py:963
↓ 1 callersFunctionrestore_term_title
Restore, if possible, terminal title to the original state
IPython/utils/terminal.py:115
↓ 1 callersMethodrestore_term_title
(self)
IPython/terminal/interactiveshell.py:273
↓ 1 callersFunctionretina_figure
format a figure as a pixel-doubled (retina) PNG
IPython/core/pylabtools.py:138
↓ 1 callersFunctionreverse_aliases
Produce a mapping of trait names to lists of command line aliases.
docs/autogen_config.py:83
↓ 1 callersMethodrewrite_prompt_tokens
(self)
IPython/terminal/prompts.py:47
↓ 1 callersMethodrun
Run the named file inside IPython as a program. Usage:: %run [-n -i -e -G] [( -t [-N<N>] | -d [-b<N>] | -p
IPython/core/magics/execution.py:527
↓ 1 callersMethodrun
(self)
IPython/testing/iptest.py:293
↓ 1 callersMethodrun
(self, test, compileflags=None, out=None, clear_globs=True)
IPython/testing/plugin/ipdoctest.py:571
↓ 1 callersMethodrun_ast_nodes
Run a sequence of AST nodes. The execution mode depends on the interactivity parameter. Parameters ---------- nodelis
IPython/core/interactiveshell.py:3225
↓ 1 callersMethodrun_code
Execute a code object. When an exception occurs, self.showtraceback() is called to display a traceback. Parameters -
IPython/core/interactiveshell.py:3376
↓ 1 callersFunctionrun_iptest
Run the IPython test suite using nose. This function is called when this script is **not** called with the form `iptest all`. It simply call
IPython/testing/iptest.py:377
↓ 1 callersMethodrun_tmpfile_p
(self)
IPython/core/tests/test_run.py:178
↓ 1 callersMethods_matches
(self, key)
IPython/utils/strdispatch.py:57
↓ 1 callersMethodsave_image
Saves the image file to disk.
IPython/sphinxext/ipython_directive.py:678
↓ 1 callersMethodsave_sys_module_state
Save the state of hooks in the sys module. This has to be called after self.user_module is created.
IPython/core/interactiveshell.py:951
↓ 1 callersMethodscan
(self, mod)
docs/sphinxext/apigen.py:73
↓ 1 callersFunctionsentencize
Extract first sentence
docs/autogen_shortcuts.py:14
↓ 1 callersMethodset_active_scheme
Set the currently active scheme. Names are by default compared in a case-insensitive way, but this can be changed by setting the para
IPython/utils/coloransi.py:164
↓ 1 callersMethodset_autoindent
Set the autoindent flag. If called with no arguments, it acts as a toggle.
IPython/core/interactiveshell.py:716
↓ 1 callersMethodset_colors
Shorthand access to the color table scheme selector method.
IPython/core/ultratb.py:554
← previousnext →901–1,000 of 3,293, ranked by callers