This repository was archived by the owner on Apr 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathgenindex.html
3115 lines (3051 loc) · 392 KB
/
genindex.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Index — IPython v0.10 documentation</title>
<link rel="stylesheet" href="_static/default.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '',
VERSION: '0.10',
COLLAPSE_MODINDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="top" title="IPython v0.10 documentation" href="index.html" />
<link rel="canonical" href="http://ipython.readthedocs.io/en/stable/genindex.html"/>
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="modindex.html" title="Global Module Index"
accesskey="M">modules</a> |</li>
<li><a href="index.html">IPython v0.10 documentation</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<h1 id="index">Index</h1>
<a href="#_"><strong>_</strong></a> | <a href="#A"><strong>A</strong></a> | <a href="#B"><strong>B</strong></a> | <a href="#C"><strong>C</strong></a> | <a href="#D"><strong>D</strong></a> | <a href="#E"><strong>E</strong></a> | <a href="#F"><strong>F</strong></a> | <a href="#G"><strong>G</strong></a> | <a href="#H"><strong>H</strong></a> | <a href="#I"><strong>I</strong></a> | <a href="#J"><strong>J</strong></a> | <a href="#K"><strong>K</strong></a> | <a href="#L"><strong>L</strong></a> | <a href="#M"><strong>M</strong></a> | <a href="#N"><strong>N</strong></a> | <a href="#O"><strong>O</strong></a> | <a href="#P"><strong>P</strong></a> | <a href="#Q"><strong>Q</strong></a> | <a href="#R"><strong>R</strong></a> | <a href="#S"><strong>S</strong></a> | <a href="#T"><strong>T</strong></a> | <a href="#U"><strong>U</strong></a> | <a href="#V"><strong>V</strong></a> | <a href="#W"><strong>W</strong></a> | <a href="#X"><strong>X</strong></a> | <a href="#Z"><strong>Z</strong></a>
<hr />
<h2 id="_">_</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobBase.__init__">__init__() (IPython.background_jobs.BackgroundJobBase method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorScheme.__init__">(IPython.ColorANSI.ColorScheme method)</a></dt>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorSchemeTable.__init__">(IPython.ColorANSI.ColorSchemeTable method)</a></dt>
<dt><a href="api/generated/IPython.ConfigLoader.html#IPython.ConfigLoader.ConfigLoader.__init__">(IPython.ConfigLoader.ConfigLoader method)</a></dt>
<dt><a href="api/generated/IPython.ConfigLoader.html#IPython.ConfigLoader.ConfigLoaderError.__init__">(IPython.ConfigLoader.ConfigLoaderError method)</a></dt>
<dt><a href="api/generated/IPython.CrashHandler.html#IPython.CrashHandler.CrashHandler.__init__">(IPython.CrashHandler.CrashHandler method)</a></dt>
<dt><a href="api/generated/IPython.CrashHandler.html#IPython.CrashHandler.IPythonCrashHandler.__init__">(IPython.CrashHandler.IPythonCrashHandler method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.ArgumentError.__init__">(IPython.DPyGetOpt.ArgumentError method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.DPyGetOpt.__init__">(IPython.DPyGetOpt.DPyGetOpt method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.Error.__init__">(IPython.DPyGetOpt.Error method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.SpecificationError.__init__">(IPython.DPyGetOpt.SpecificationError method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.TerminationError.__init__">(IPython.DPyGetOpt.TerminationError method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.__init__">(IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Tracer.__init__">(IPython.Debugger.Tracer method)</a></dt>
<dt><a href="api/generated/IPython.Itpl.html#IPython.Itpl.Itpl.__init__">(IPython.Itpl.Itpl method)</a></dt>
<dt><a href="api/generated/IPython.Itpl.html#IPython.Itpl.ItplError.__init__">(IPython.Itpl.ItplError method)</a></dt>
<dt><a href="api/generated/IPython.Itpl.html#IPython.Itpl.ItplFile.__init__">(IPython.Itpl.ItplFile method)</a></dt>
<dt><a href="api/generated/IPython.Itpl.html#IPython.Itpl.ItplNS.__init__">(IPython.Itpl.ItplNS method)</a></dt>
<dt><a href="api/generated/IPython.Logger.html#IPython.Logger.Logger.__init__">(IPython.Logger.Logger method)</a></dt>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.Magic.__init__">(IPython.Magic.Magic method)</a></dt>
<dt><a href="api/generated/IPython.OInspect.html#IPython.OInspect.Inspector.__init__">(IPython.OInspect.Inspector method)</a></dt>
<dt><a href="api/generated/IPython.OInspect.html#IPython.OInspect.myStringIO.__init__">(IPython.OInspect.myStringIO method)</a></dt>
<dt><a href="api/generated/IPython.OutputTrap.html#IPython.OutputTrap.OutputTrap.__init__">(IPython.OutputTrap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.OutputTrap.html#IPython.OutputTrap.OutputTrapError.__init__">(IPython.OutputTrap.OutputTrapError method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.BasePrompt.__init__">(IPython.Prompts.BasePrompt method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.CachedOutput.__init__">(IPython.Prompts.CachedOutput method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.Prompt1.__init__">(IPython.Prompts.Prompt1 method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.Prompt2.__init__">(IPython.Prompts.Prompt2 method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.PromptOut.__init__">(IPython.Prompts.PromptOut method)</a></dt>
<dt><a href="api/generated/IPython.PyColorize.html#IPython.PyColorize.Parser.__init__">(IPython.PyColorize.Parser method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShell.__init__">(IPython.Shell.IPShell method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellEmbed.__init__">(IPython.Shell.IPShellEmbed method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellGTK.__init__">(IPython.Shell.IPShellGTK method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellMatplotlib.__init__">(IPython.Shell.IPShellMatplotlib method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellMatplotlibGTK.__init__">(IPython.Shell.IPShellMatplotlibGTK method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellMatplotlibQt.__init__">(IPython.Shell.IPShellMatplotlibQt method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellMatplotlibQt4.__init__">(IPython.Shell.IPShellMatplotlibQt4 method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellMatplotlibWX.__init__">(IPython.Shell.IPShellMatplotlibWX method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellQt.__init__">(IPython.Shell.IPShellQt method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellQt4.__init__">(IPython.Shell.IPShellQt4 method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPShellWX.__init__">(IPython.Shell.IPShellWX method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.IPThread.__init__">(IPython.Shell.IPThread method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.MTInteractiveShell.__init__">(IPython.Shell.MTInteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.MatplotlibMTShell.__init__">(IPython.Shell.MatplotlibMTShell method)</a></dt>
<dt><a href="api/generated/IPython.Shell.html#IPython.Shell.MatplotlibShell.__init__">(IPython.Shell.MatplotlibShell method)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobExpr.__init__">(IPython.background_jobs.BackgroundJobExpr method)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobFunc.__init__">(IPython.background_jobs.BackgroundJobFunc method)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobManager.__init__">(IPython.background_jobs.BackgroundJobManager method)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.Completer.__init__">(IPython.completer.Completer method)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.__init__">(IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.config.api.html#IPython.config.api.ConfigObjManager.__init__">(IPython.config.api.ConfigObjManager method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearDemo.__init__">(IPython.demo.ClearDemo method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearIPDemo.__init__">(IPython.demo.ClearIPDemo method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearMixin.__init__">(IPython.demo.ClearMixin method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.Demo.__init__">(IPython.demo.Demo method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.DemoError.__init__">(IPython.demo.DemoError method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.IPythonDemo.__init__">(IPython.demo.IPythonDemo method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.IPythonLineDemo.__init__">(IPython.demo.IPythonLineDemo method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.LineDemo.__init__">(IPython.demo.LineDemo method)</a></dt>
<dt><a href="api/generated/IPython.external.Itpl.html#IPython.external.Itpl.Itpl.__init__">(IPython.external.Itpl.Itpl method)</a></dt>
<dt><a href="api/generated/IPython.external.Itpl.html#IPython.external.Itpl.ItplError.__init__">(IPython.external.Itpl.ItplError method)</a></dt>
<dt><a href="api/generated/IPython.external.Itpl.html#IPython.external.Itpl.ItplFile.__init__">(IPython.external.Itpl.ItplFile method)</a></dt>
<dt><a href="api/generated/IPython.external.Itpl.html#IPython.external.Itpl.ItplNS.__init__">(IPython.external.Itpl.ItplNS method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.Action.__init__">(IPython.external.argparse.Action method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentDefaultsHelpFormatter.__init__">(IPython.external.argparse.ArgumentDefaultsHelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentError.__init__">(IPython.external.argparse.ArgumentError method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentParser.__init__">(IPython.external.argparse.ArgumentParser method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.FileType.__init__">(IPython.external.argparse.FileType method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.__init__">(IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.Namespace.__init__">(IPython.external.argparse.Namespace method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.RawDescriptionHelpFormatter.__init__">(IPython.external.argparse.RawDescriptionHelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.RawTextHelpFormatter.__init__">(IPython.external.argparse.RawTextHelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.__init__">(IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigObj.__init__">(IPython.external.configobj.ConfigObj method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigObjError.__init__">(IPython.external.configobj.ConfigObjError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigParserInterpolation.__init__">(IPython.external.configobj.ConfigParserInterpolation method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigspecError.__init__">(IPython.external.configobj.ConfigspecError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.DuplicateError.__init__">(IPython.external.configobj.DuplicateError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.InterpolationEngine.__init__">(IPython.external.configobj.InterpolationEngine method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.InterpolationError.__init__">(IPython.external.configobj.InterpolationError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.InterpolationLoopError.__init__">(IPython.external.configobj.InterpolationLoopError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.MissingInterpolationOption.__init__">(IPython.external.configobj.MissingInterpolationOption method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.NestingError.__init__">(IPython.external.configobj.NestingError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ParseError.__init__">(IPython.external.configobj.ParseError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ReloadError.__init__">(IPython.external.configobj.ReloadError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.RepeatSectionError.__init__">(IPython.external.configobj.RepeatSectionError method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.__init__">(IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.SimpleVal.__init__">(IPython.external.configobj.SimpleVal method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.TemplateInterpolation.__init__">(IPython.external.configobj.TemplateInterpolation method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.UnknownType.__init__">(IPython.external.configobj.UnknownType method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.UnreprError.__init__">(IPython.external.configobj.UnreprError method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.TreeWalkWarning.__init__">(IPython.external.path.TreeWalkWarning method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.__init__">(IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Breakable.__init__">(IPython.external.pretty.Breakable method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Group.__init__">(IPython.external.pretty.Group method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.GroupQueue.__init__">(IPython.external.pretty.GroupQueue method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.PrettyPrinter.__init__">(IPython.external.pretty.PrettyPrinter method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Printable.__init__">(IPython.external.pretty.Printable method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.RepresentationPrinter.__init__">(IPython.external.pretty.RepresentationPrinter method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Text.__init__">(IPython.external.pretty.Text method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.ValidateError.__init__">(IPython.external.validate.ValidateError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.Validator.__init__">(IPython.external.validate.Validator method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtMissingValue.__init__">(IPython.external.validate.VdtMissingValue method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtParamError.__init__">(IPython.external.validate.VdtParamError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtTypeError.__init__">(IPython.external.validate.VdtTypeError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtUnknownCheckError.__init__">(IPython.external.validate.VdtUnknownCheckError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtValueError.__init__">(IPython.external.validate.VdtValueError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtValueTooBigError.__init__">(IPython.external.validate.VdtValueTooBigError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtValueTooLongError.__init__">(IPython.external.validate.VdtValueTooLongError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtValueTooShortError.__init__">(IPython.external.validate.VdtValueTooShortError method)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.VdtValueTooSmallError.__init__">(IPython.external.validate.VdtValueTooSmallError method)</a></dt>
<dt><a href="api/generated/IPython.frontend.asyncfrontendbase.html#IPython.frontend.asyncfrontendbase.AsyncFrontEndBase.__init__">(IPython.frontend.asyncfrontendbase.AsyncFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.frontendbase.html#IPython.frontend.frontendbase.FrontEndBase.__init__">(IPython.frontend.frontendbase.FrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.frontendbase.html#IPython.frontend.frontendbase.IFrontEnd.__init__">(IPython.frontend.frontendbase.IFrontEnd static method)</a></dt>
<dt><a href="api/generated/IPython.frontend.frontendbase.html#IPython.frontend.frontendbase.IFrontEndFactory.__init__">(IPython.frontend.frontendbase.IFrontEndFactory static method)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.__init__">(IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.prefilterfrontend.html#IPython.frontend.prefilterfrontend.PrefilterFrontEnd.__init__">(IPython.frontend.prefilterfrontend.PrefilterFrontEnd method)</a></dt>
<dt><a href="api/generated/IPython.frontend.process.pipedprocess.html#IPython.frontend.process.pipedprocess.PipedProcess.__init__">(IPython.frontend.process.pipedprocess.PipedProcess method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.console_widget.html#IPython.frontend.wx.console_widget.ConsoleWidget.__init__">(IPython.frontend.wx.console_widget.ConsoleWidget method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.ipythonx.html#IPython.frontend.wx.ipythonx.IPythonX.__init__">(IPython.frontend.wx.ipythonx.IPythonX method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.ipythonx.html#IPython.frontend.wx.ipythonx.IPythonXController.__init__">(IPython.frontend.wx.ipythonx.IPythonXController method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.__init__">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.Error.__init__">(IPython.genutils.Error method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.HomeDirError.__init__">(IPython.genutils.HomeDirError method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.IOStream.__init__">(IPython.genutils.IOStream method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.IOTerm.__init__">(IPython.genutils.IOTerm method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.LSString.__init__">(IPython.genutils.LSString method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.NLprinter.__init__">(IPython.genutils.NLprinter method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.SList.__init__">(IPython.genutils.SList method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.SystemExec.__init__">(IPython.genutils.SystemExec method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipshell_nonblocking.html#IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell.__init__">(IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.IPythonHistoryPanel.__init__">(IPython.gui.wx.ipython_history.IPythonHistoryPanel method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.PythonSTC.__init__">(IPython.gui.wx.ipython_history.PythonSTC method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.__init__">(IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxConsoleView.__init__">(IPython.gui.wx.ipython_view.WxConsoleView method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxNonBlockingIPShell.__init__">(IPython.gui.wx.ipython_view.WxNonBlockingIPShell method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.thread_ex.html#IPython.gui.wx.thread_ex.ThreadEx.__init__">(IPython.gui.wx.thread_ex.ThreadEx method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.wxIPython.html#IPython.gui.wx.wxIPython.MyApp.__init__">(IPython.gui.wx.wxIPython.MyApp method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.wxIPython.html#IPython.gui.wx.wxIPython.MyFrame.__init__">(IPython.gui.wx.wxIPython.MyFrame method)</a></dt>
<dt><a href="api/generated/IPython.history.html#IPython.history.ShadowHist.__init__">(IPython.history.ShadowHist method)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.CommandChainDispatcher.__init__">(IPython.hooks.CommandChainDispatcher method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.DebugTools.__init__">(IPython.ipapi.DebugTools method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.__init__">(IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPythonNotRunning.__init__">(IPython.ipapi.IPythonNotRunning method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.TryNext.__init__">(IPython.ipapi.TryNext method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.UsageError.__init__">(IPython.ipapi.UsageError method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InputList.__init__">(IPython.iplib.InputList method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.__init__">(IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.Quitter.__init__">(IPython.iplib.Quitter method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.SpaceInInput.__init__">(IPython.iplib.SpaceInInput method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.SyntaxTB.__init__">(IPython.iplib.SyntaxTB method)</a></dt>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.__init__">(IPython.ipstruct.Struct method)</a></dt>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.IPythonRunner.__init__">(IPython.irunner.IPythonRunner method)</a></dt>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.InteractiveRunner.__init__">(IPython.irunner.InteractiveRunner method)</a></dt>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.PythonRunner.__init__">(IPython.irunner.PythonRunner method)</a></dt>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.RunnerFactory.__init__">(IPython.irunner.RunnerFactory method)</a></dt>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.SAGERunner.__init__">(IPython.irunner.SAGERunner method)</a></dt>
<dt><a href="api/generated/IPython.kernel.clientconnector.html#IPython.kernel.clientconnector.ClientConnector.__init__">(IPython.kernel.clientconnector.ClientConnector method)</a></dt>
<dt><a href="api/generated/IPython.kernel.clientinterfaces.html#IPython.kernel.clientinterfaces.IBlockingClientAdaptor.__init__">(IPython.kernel.clientinterfaces.IBlockingClientAdaptor static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.clientinterfaces.html#IPython.kernel.clientinterfaces.IFCClientInterfaceProvider.__init__">(IPython.kernel.clientinterfaces.IFCClientInterfaceProvider static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.contexts.html#IPython.kernel.contexts.RemoteContextBase.__init__">(IPython.kernel.contexts.RemoteContextBase method)</a></dt>
<dt><a href="api/generated/IPython.kernel.contexts.html#IPython.kernel.contexts.RemoteMultiEngine.__init__">(IPython.kernel.contexts.RemoteMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.ControllerAdapterBase.__init__">(IPython.kernel.controllerservice.ControllerAdapterBase method)</a></dt>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.ControllerService.__init__">(IPython.kernel.controllerservice.ControllerService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.IControllerBase.__init__">(IPython.kernel.controllerservice.IControllerBase static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.IControllerCore.__init__">(IPython.kernel.controllerservice.IControllerCore static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_formatter.html#IPython.kernel.core.display_formatter.IDisplayFormatter.__init__">(IPython.kernel.core.display_formatter.IDisplayFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_formatter.html#IPython.kernel.core.display_formatter.PPrintDisplayFormatter.__init__">(IPython.kernel.core.display_formatter.PPrintDisplayFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_formatter.html#IPython.kernel.core.display_formatter.ReprDisplayFormatter.__init__">(IPython.kernel.core.display_formatter.ReprDisplayFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_trap.html#IPython.kernel.core.display_trap.DisplayTrap.__init__">(IPython.kernel.core.display_trap.DisplayTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.ControllerCreationError.__init__">(IPython.kernel.core.error.ControllerCreationError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.ControllerError.__init__">(IPython.kernel.core.error.ControllerError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.EngineCreationError.__init__">(IPython.kernel.core.error.EngineCreationError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.EngineError.__init__">(IPython.kernel.core.error.EngineError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.IPythonError.__init__">(IPython.kernel.core.error.IPythonError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.fd_redirector.html#IPython.kernel.core.fd_redirector.FDRedirector.__init__">(IPython.kernel.core.fd_redirector.FDRedirector method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.file_like.html#IPython.kernel.core.file_like.FileLike.__init__">(IPython.kernel.core.file_like.FileLike method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.history.html#IPython.kernel.core.history.FrontEndHistory.__init__">(IPython.kernel.core.history.FrontEndHistory method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.history.html#IPython.kernel.core.history.History.__init__">(IPython.kernel.core.history.History method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.history.html#IPython.kernel.core.history.InterpreterHistory.__init__">(IPython.kernel.core.history.InterpreterHistory method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.__init__">(IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.NotDefined.__init__">(IPython.kernel.core.interpreter.NotDefined method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.macro.html#IPython.kernel.core.macro.Macro.__init__">(IPython.kernel.core.macro.Macro method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.magic.html#IPython.kernel.core.magic.Magic.__init__">(IPython.kernel.core.magic.Magic method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.message_cache.html#IPython.kernel.core.message_cache.IMessageCache.__init__">(IPython.kernel.core.message_cache.IMessageCache method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.message_cache.html#IPython.kernel.core.message_cache.SimpleMessageCache.__init__">(IPython.kernel.core.message_cache.SimpleMessageCache method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.notification.html#IPython.kernel.core.notification.NotificationCenter.__init__">(IPython.kernel.core.notification.NotificationCenter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.output_trap.html#IPython.kernel.core.output_trap.OutputTrap.__init__">(IPython.kernel.core.output_trap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.BasePrompt.__init__">(IPython.kernel.core.prompts.BasePrompt method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.CachedOutput.__init__">(IPython.kernel.core.prompts.CachedOutput method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.Prompt1.__init__">(IPython.kernel.core.prompts.Prompt1 method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.Prompt2.__init__">(IPython.kernel.core.prompts.Prompt2 method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.PromptOut.__init__">(IPython.kernel.core.prompts.PromptOut method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.redirector_output_trap.html#IPython.kernel.core.redirector_output_trap.RedirectorOutputTrap.__init__">(IPython.kernel.core.redirector_output_trap.RedirectorOutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.sync_traceback_trap.html#IPython.kernel.core.sync_traceback_trap.SyncTracebackTrap.__init__">(IPython.kernel.core.sync_traceback_trap.SyncTracebackTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.traceback_formatter.html#IPython.kernel.core.traceback_formatter.ITracebackFormatter.__init__">(IPython.kernel.core.traceback_formatter.ITracebackFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.traceback_formatter.html#IPython.kernel.core.traceback_formatter.PlainTracebackFormatter.__init__">(IPython.kernel.core.traceback_formatter.PlainTracebackFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.traceback_trap.html#IPython.kernel.core.traceback_trap.TracebackTrap.__init__">(IPython.kernel.core.traceback_trap.TracebackTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.util.html#IPython.kernel.core.util.Bunch.__init__">(IPython.kernel.core.util.Bunch method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.util.html#IPython.kernel.core.util.InputList.__init__">(IPython.kernel.core.util.InputList method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineconnector.html#IPython.kernel.engineconnector.EngineConnector.__init__">(IPython.kernel.engineconnector.EngineConnector method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.__init__">(IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.FCEngineReferenceFromService.__init__">(IPython.kernel.enginefc.FCEngineReferenceFromService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.FCRemoteEngineRefFromService.__init__">(IPython.kernel.enginefc.FCRemoteEngineRefFromService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.IFCControllerBase.__init__">(IPython.kernel.enginefc.IFCControllerBase static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.IFCEngine.__init__">(IPython.kernel.enginefc.IFCEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.Command.__init__">(IPython.kernel.engineservice.Command method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineAPI.__init__">(IPython.kernel.engineservice.EngineAPI method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.__init__">(IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineBase.__init__">(IPython.kernel.engineservice.IEngineBase static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineCore.__init__">(IPython.kernel.engineservice.IEngineCore static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineProperties.__init__">(IPython.kernel.engineservice.IEngineProperties static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineQueued.__init__">(IPython.kernel.engineservice.IEngineQueued static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineSerialized.__init__">(IPython.kernel.engineservice.IEngineSerialized static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.IEngineThreaded.__init__">(IPython.kernel.engineservice.IEngineThreaded static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.__init__">(IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.StrictDict.__init__">(IPython.kernel.engineservice.StrictDict method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.ThreadedEngineService.__init__">(IPython.kernel.engineservice.ThreadedEngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.AbortedPendingDeferredError.__init__">(IPython.kernel.error.AbortedPendingDeferredError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ClientError.__init__">(IPython.kernel.error.ClientError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.CompositeError.__init__">(IPython.kernel.error.CompositeError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ConnectionError.__init__">(IPython.kernel.error.ConnectionError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.FileTimeoutError.__init__">(IPython.kernel.error.FileTimeoutError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.IdInUse.__init__">(IPython.kernel.error.IdInUse method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.InvalidClientID.__init__">(IPython.kernel.error.InvalidClientID method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.InvalidDeferredID.__init__">(IPython.kernel.error.InvalidDeferredID method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.InvalidEngineID.__init__">(IPython.kernel.error.InvalidEngineID method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.InvalidProperty.__init__">(IPython.kernel.error.InvalidProperty method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.KernelError.__init__">(IPython.kernel.error.KernelError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.MessageSizeError.__init__">(IPython.kernel.error.MessageSizeError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.MissingBlockArgument.__init__">(IPython.kernel.error.MissingBlockArgument method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.NoEnginesRegistered.__init__">(IPython.kernel.error.NoEnginesRegistered method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.NotAPendingResult.__init__">(IPython.kernel.error.NotAPendingResult method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.NotDefined.__init__">(IPython.kernel.error.NotDefined method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.PBMessageSizeError.__init__">(IPython.kernel.error.PBMessageSizeError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ProtocolError.__init__">(IPython.kernel.error.ProtocolError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.QueueCleared.__init__">(IPython.kernel.error.QueueCleared method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ResultAlreadyRetrieved.__init__">(IPython.kernel.error.ResultAlreadyRetrieved method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ResultNotCompleted.__init__">(IPython.kernel.error.ResultNotCompleted method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.SecurityError.__init__">(IPython.kernel.error.SecurityError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.SerializationError.__init__">(IPython.kernel.error.SerializationError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.StopLocalExecution.__init__">(IPython.kernel.error.StopLocalExecution method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.TaskAborted.__init__">(IPython.kernel.error.TaskAborted method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.TaskRejectError.__init__">(IPython.kernel.error.TaskRejectError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.TaskTimeout.__init__">(IPython.kernel.error.TaskTimeout method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.UnpickleableException.__init__">(IPython.kernel.error.UnpickleableException method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.IMapper.__init__">(IPython.kernel.mapper.IMapper static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.IMultiEngineMapperFactory.__init__">(IPython.kernel.mapper.IMultiEngineMapperFactory static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.ITaskMapperFactory.__init__">(IPython.kernel.mapper.ITaskMapperFactory static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.MultiEngineMapper.__init__">(IPython.kernel.mapper.MultiEngineMapper method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.SynchronousTaskMapper.__init__">(IPython.kernel.mapper.SynchronousTaskMapper method)</a></dt>
<dt><a href="api/generated/IPython.kernel.mapper.html#IPython.kernel.mapper.TaskMapper.__init__">(IPython.kernel.mapper.TaskMapper method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IEngineMultiplexer.__init__">(IPython.kernel.multiengine.IEngineMultiplexer static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IFullMultiEngine.__init__">(IPython.kernel.multiengine.IFullMultiEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IFullSynchronousMultiEngine.__init__">(IPython.kernel.multiengine.IFullSynchronousMultiEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IMultiEngine.__init__">(IPython.kernel.multiengine.IMultiEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IMultiEngineCoordinator.__init__">(IPython.kernel.multiengine.IMultiEngineCoordinator static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.IMultiEngineExtras.__init__">(IPython.kernel.multiengine.IMultiEngineExtras static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.ISynchronousEngineMultiplexer.__init__">(IPython.kernel.multiengine.ISynchronousEngineMultiplexer static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.ISynchronousMultiEngine.__init__">(IPython.kernel.multiengine.ISynchronousMultiEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.ISynchronousMultiEngineCoordinator.__init__">(IPython.kernel.multiengine.ISynchronousMultiEngineCoordinator static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.ISynchronousMultiEngineExtras.__init__">(IPython.kernel.multiengine.ISynchronousMultiEngineExtras static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.__init__">(IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.SynchronousMultiEngine.__init__">(IPython.kernel.multiengine.SynchronousMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.__init__">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.IFullBlockingMultiEngineClient.__init__">(IPython.kernel.multiengineclient.IFullBlockingMultiEngineClient static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.IPendingResult.__init__">(IPython.kernel.multiengineclient.IPendingResult static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.InteractiveMultiEngineClient.__init__">(IPython.kernel.multiengineclient.InteractiveMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.PendingResult.__init__">(IPython.kernel.multiengineclient.PendingResult method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.QueueStatusList.__init__">(IPython.kernel.multiengineclient.QueueStatusList method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.ResultList.__init__">(IPython.kernel.multiengineclient.ResultList method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.__init__">(IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCSynchronousMultiEngineFromMultiEngine.__init__">(IPython.kernel.multienginefc.FCSynchronousMultiEngineFromMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.IFCSynchronousMultiEngine.__init__">(IPython.kernel.multienginefc.IFCSynchronousMultiEngine static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.ISerialized.__init__">(IPython.kernel.newserialized.ISerialized static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.IUnSerialized.__init__">(IPython.kernel.newserialized.IUnSerialized static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.SerializeIt.__init__">(IPython.kernel.newserialized.SerializeIt method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.Serialized.__init__">(IPython.kernel.newserialized.Serialized method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.UnSerializeIt.__init__">(IPython.kernel.newserialized.UnSerializeIt method)</a></dt>
<dt><a href="api/generated/IPython.kernel.newserialized.html#IPython.kernel.newserialized.UnSerialized.__init__">(IPython.kernel.newserialized.UnSerialized method)</a></dt>
<dt><a href="api/generated/IPython.kernel.parallelfunction.html#IPython.kernel.parallelfunction.IMultiEngineParallelDecorator.__init__">(IPython.kernel.parallelfunction.IMultiEngineParallelDecorator static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.parallelfunction.html#IPython.kernel.parallelfunction.IParallelFunction.__init__">(IPython.kernel.parallelfunction.IParallelFunction static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.parallelfunction.html#IPython.kernel.parallelfunction.ITaskParallelDecorator.__init__">(IPython.kernel.parallelfunction.ITaskParallelDecorator static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.parallelfunction.html#IPython.kernel.parallelfunction.ParallelFunction.__init__">(IPython.kernel.parallelfunction.ParallelFunction method)</a></dt>
<dt><a href="api/generated/IPython.kernel.pendingdeferred.html#IPython.kernel.pendingdeferred.PendingDeferredManager.__init__">(IPython.kernel.pendingdeferred.PendingDeferredManager method)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.CannedFunction.__init__">(IPython.kernel.pickleutil.CannedFunction method)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.CannedObject.__init__">(IPython.kernel.pickleutil.CannedObject method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.BatchEngineSet.__init__">(IPython.kernel.scripts.ipcluster.BatchEngineSet method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ControllerLauncher.__init__">(IPython.kernel.scripts.ipcluster.ControllerLauncher method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.EngineLauncher.__init__">(IPython.kernel.scripts.ipcluster.EngineLauncher method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.LauncherProcessProtocol.__init__">(IPython.kernel.scripts.ipcluster.LauncherProcessProtocol method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.LocalEngineSet.__init__">(IPython.kernel.scripts.ipcluster.LocalEngineSet method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.PBSEngineSet.__init__">(IPython.kernel.scripts.ipcluster.PBSEngineSet method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ProcessLauncher.__init__">(IPython.kernel.scripts.ipcluster.ProcessLauncher method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ProcessStateError.__init__">(IPython.kernel.scripts.ipcluster.ProcessStateError method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.SSHEngineSet.__init__">(IPython.kernel.scripts.ipcluster.SSHEngineSet method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.UnknownStatus.__init__">(IPython.kernel.scripts.ipcluster.UnknownStatus method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.BaseTask.__init__">(IPython.kernel.task.BaseTask method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.FIFOScheduler.__init__">(IPython.kernel.task.FIFOScheduler method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.IScheduler.__init__">(IPython.kernel.task.IScheduler static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.ITask.__init__">(IPython.kernel.task.ITask static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.ITaskController.__init__">(IPython.kernel.task.ITaskController static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.IWorker.__init__">(IPython.kernel.task.IWorker static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.LIFOScheduler.__init__">(IPython.kernel.task.LIFOScheduler method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.MapTask.__init__">(IPython.kernel.task.MapTask method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.ResultNS.__init__">(IPython.kernel.task.ResultNS method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.StringTask.__init__">(IPython.kernel.task.StringTask method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.__init__">(IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskResult.__init__">(IPython.kernel.task.TaskResult method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.WorkerFromQueuedEngine.__init__">(IPython.kernel.task.WorkerFromQueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.BlockingTaskClient.__init__">(IPython.kernel.taskclient.BlockingTaskClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.IBlockingTaskClient.__init__">(IPython.kernel.taskclient.IBlockingTaskClient static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient.__init__">(IPython.kernel.taskfc.FCTaskClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskControllerFromTaskController.__init__">(IPython.kernel.taskfc.FCTaskControllerFromTaskController method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.IFCTaskController.__init__">(IPython.kernel.taskfc.IFCTaskController static method)</a></dt>
<dt><a href="api/generated/IPython.kernel.twistedutil.html#IPython.kernel.twistedutil.DeferredList.__init__">(IPython.kernel.twistedutil.DeferredList method)</a></dt>
<dt><a href="api/generated/IPython.kernel.twistedutil.html#IPython.kernel.twistedutil.ReactorInThread.__init__">(IPython.kernel.twistedutil.ReactorInThread method)</a></dt>
<dt><a href="api/generated/IPython.macro.html#IPython.macro.Macro.__init__">(IPython.macro.Macro method)</a></dt>
<dt><a href="api/generated/IPython.platutils.html#IPython.platutils.FindCmdError.__init__">(IPython.platutils.FindCmdError method)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.LineInfo.__init__">(IPython.prefilter.LineInfo method)</a></dt>
<dt><a href="api/generated/IPython.strdispatch.html#IPython.strdispatch.StrDispatch.__init__">(IPython.strdispatch.StrDispatch method)</a></dt>
<dt><a href="api/generated/IPython.testing.iptest.html#IPython.testing.iptest.IPTester.__init__">(IPython.testing.iptest.IPTester method)</a></dt>
<dt><a href="api/generated/IPython.testing.mkdoctests.html#IPython.testing.mkdoctests.IndentOut.__init__">(IPython.testing.mkdoctests.IndentOut method)</a></dt>
<dt><a href="api/generated/IPython.testing.mkdoctests.html#IPython.testing.mkdoctests.RunnerFactory.__init__">(IPython.testing.mkdoctests.RunnerFactory method)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.show_refs.html#IPython.testing.plugin.show_refs.C.__init__">(IPython.testing.plugin.show_refs.C method)</a></dt>
<dt><a href="api/generated/IPython.testing.util.html#IPython.testing.util.DeferredTestCase.__init__">(IPython.testing.util.DeferredTestCase method)</a></dt>
<dt><a href="api/generated/IPython.tools.growl.html#IPython.tools.growl.IPythonGrowlError.__init__">(IPython.tools.growl.IPythonGrowlError method)</a></dt>
<dt><a href="api/generated/IPython.tools.growl.html#IPython.tools.growl.Notifier.__init__">(IPython.tools.growl.Notifier method)</a></dt>
<dt><a href="api/generated/IPython.twshell.html#IPython.twshell.IPShellTwisted.__init__">(IPython.twshell.IPShellTwisted method)</a></dt>
<dt><a href="api/generated/IPython.twshell.html#IPython.twshell.TwistedInteractiveShell.__init__">(IPython.twshell.TwistedInteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.AutoFormattedTB.__init__">(IPython.ultraTB.AutoFormattedTB method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.ColorTB.__init__">(IPython.ultraTB.ColorTB method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.FormattedTB.__init__">(IPython.ultraTB.FormattedTB method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.ListTB.__init__">(IPython.ultraTB.ListTB method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.TBTools.__init__">(IPython.ultraTB.TBTools method)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.VerboseTB.__init__">(IPython.ultraTB.VerboseTB method)</a></dt>
<dt><a href="api/generated/IPython.wildcard.html#IPython.wildcard.NameSpace.__init__">(IPython.wildcard.NameSpace method)</a></dt>
</dl></dd></dl></td><td width="33%" valign="top"><dl>
</dl></td></tr></table>
<h2 id="A">A</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.abbrev_cwd">abbrev_cwd() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.abort">abort() (IPython.kernel.task.TaskController method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.BlockingTaskClient.abort">(IPython.kernel.taskclient.BlockingTaskClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient.abort">(IPython.kernel.taskfc.FCTaskClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.abortCommand">abortCommand() (IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.AbortedPendingDeferredError">AbortedPendingDeferredError (class in IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.abspath">abspath() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.access">access() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.Action">Action (class in IPython.external.argparse)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.InteractiveMultiEngineClient.activate">activate() (IPython.kernel.multiengineclient.InteractiveMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.adapt_to_blocking_client">adapt_to_blocking_client() (IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient.adapt_to_blocking_client">(IPython.kernel.taskfc.FCTaskClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Text.add">add() (IPython.external.pretty.Text method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.history.html#IPython.history.ShadowHist.add">(IPython.history.ShadowHist method)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.CommandChainDispatcher.add">(IPython.hooks.CommandChainDispatcher method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.util.html#IPython.kernel.core.util.InputList.add">(IPython.kernel.core.util.InputList method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.add_argument">add_argument() (IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.add_arguments">add_arguments() (IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.add_builtins">add_builtins() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.PendingResult.add_callback">add_callback() (IPython.kernel.multiengineclient.PendingResult method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.history.html#IPython.kernel.core.history.FrontEndHistory.add_items">add_items() (IPython.kernel.core.history.FrontEndHistory method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.message_cache.html#IPython.kernel.core.message_cache.IMessageCache.add_message">add_message() (IPython.kernel.core.message_cache.IMessageCache method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.core.message_cache.html#IPython.kernel.core.message_cache.SimpleMessageCache.add_message">(IPython.kernel.core.message_cache.SimpleMessageCache method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.notification.html#IPython.kernel.core.notification.NotificationCenter.add_observer">add_observer() (IPython.kernel.core.notification.NotificationCenter method)</a></dt>
<dt><a href="api/generated/IPython.strdispatch.html#IPython.strdispatch.StrDispatch.add_re">add_re() (IPython.strdispatch.StrDispatch method)</a></dt>
<dt><a href="api/generated/IPython.strdispatch.html#IPython.strdispatch.StrDispatch.add_s">add_s() (IPython.strdispatch.StrDispatch method)</a></dt>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorSchemeTable.add_scheme">add_scheme() (IPython.ColorANSI.ColorSchemeTable method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentParser.add_subparsers">add_subparsers() (IPython.external.argparse.ArgumentParser method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.FIFOScheduler.add_task">add_task() (IPython.kernel.task.FIFOScheduler method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.LIFOScheduler.add_task">(IPython.kernel.task.LIFOScheduler method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.add_text">add_text() (IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_trap.html#IPython.kernel.core.display_trap.DisplayTrap.add_to_message">add_to_message() (IPython.kernel.core.display_trap.DisplayTrap method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.core.output_trap.html#IPython.kernel.core.output_trap.OutputTrap.add_to_message">(IPython.kernel.core.output_trap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.traceback_trap.html#IPython.kernel.core.traceback_trap.TracebackTrap.add_to_message">(IPython.kernel.core.traceback_trap.TracebackTrap method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.add_usage">add_usage() (IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.FIFOScheduler.add_worker">add_worker() (IPython.kernel.task.FIFOScheduler method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.LIFOScheduler.add_worker">(IPython.kernel.task.LIFOScheduler method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxNonBlockingIPShell.addGUIShortcut">addGUIShortcut() (IPython.gui.wx.ipython_view.WxNonBlockingIPShell method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.addIDToResult">addIDToResult() (IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.DPyGetOpt.addOptionConfigurationTuple">addOptionConfigurationTuple() (IPython.DPyGetOpt.DPyGetOpt method)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.DPyGetOpt.addOptionConfigurationTuples">addOptionConfigurationTuples() (IPython.DPyGetOpt.DPyGetOpt method)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.DPyGetOpt.addTerminator">addTerminator() (IPython.DPyGetOpt.DPyGetOpt method)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.after_execute">after_execute() (IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.after_execute">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.Demo.again">again() (IPython.demo.Demo method)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.alias_matches">alias_matches() (IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.alias_table_validate">alias_table_validate() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.history.html#IPython.history.ShadowHist.all">all() (IPython.history.ShadowHist method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.all_belong">all_belong() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.all_completions">all_completions() (IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.allow_new_attr">allow_new_attr() (IPython.ipstruct.Struct method)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.amap">amap() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.amax">amax() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.amin">amin() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.testing.decorators.html#IPython.testing.decorators.apply_wrapper">apply_wrapper() (in module IPython.testing.decorators)</a></dt>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.Magic.arg_err">arg_err() (IPython.Magic.Magic method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.arg_split">arg_split() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentDefaultsHelpFormatter">ArgumentDefaultsHelpFormatter (class in IPython.external.argparse)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.ArgumentError">ArgumentError (class in IPython.DPyGetOpt)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentError">(class in IPython.external.argparse)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentParser">ArgumentParser (class in IPython.external.argparse)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.as_bool">as_bool() (IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.as_float">as_float() (IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.as_int">as_int() (IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.ipythonx.html#IPython.frontend.wx.ipythonx.IPythonXController.ask_exit">ask_exit() (IPython.frontend.wx.ipythonx.IPythonXController method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.ask_exit">(IPython.iplib.InteractiveShell method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.ask_yes_no">ask_yes_no() (in module IPython.genutils)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.ask_yes_no">(IPython.iplib.InteractiveShell method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.askExitCallback">askExitCallback() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.askExitHandler">askExitHandler() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.testing.util.html#IPython.testing.util.DeferredTestCase.assertDeferredEquals">assertDeferredEquals() (IPython.testing.util.DeferredTestCase method)</a></dt>
<dt><a href="api/generated/IPython.testing.util.html#IPython.testing.util.DeferredTestCase.assertDeferredRaises">assertDeferredRaises() (IPython.testing.util.DeferredTestCase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.asyncfrontendbase.html#IPython.frontend.asyncfrontendbase.AsyncFrontEndBase">AsyncFrontEndBase (class in IPython.frontend.asyncfrontendbase)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxConsoleView.asyncWrite">asyncWrite() (IPython.gui.wx.ipython_view.WxConsoleView method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.atexit_operations">atexit_operations() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.atime">atime (IPython.external.path.path attribute)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.Completer.attr_matches">attr_matches() (IPython.completer.Completer method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.Prompt1.auto_rewrite">auto_rewrite() (IPython.kernel.core.prompts.Prompt1 method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.Prompt1.auto_rewrite">(IPython.Prompts.Prompt1 method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.AutoFormattedTB">AutoFormattedTB (class in IPython.ultraTB)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.autoindent_update">autoindent_update() (IPython.iplib.InteractiveShell method)</a></dt>
</dl></td></tr></table>
<h2 id="B">B</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.Demo.back">back() (IPython.demo.Demo method)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobBase">BackgroundJobBase (class in IPython.background_jobs)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobExpr">BackgroundJobExpr (class in IPython.background_jobs)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobFunc">BackgroundJobFunc (class in IPython.background_jobs)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobManager">BackgroundJobManager (class in IPython.background_jobs)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.barrier">barrier() (IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.barrier">(IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.BlockingTaskClient.barrier">(IPython.kernel.taskclient.BlockingTaskClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient.barrier">(IPython.kernel.taskfc.FCTaskClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.base_repr">base_repr() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.basename">basename() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.BasePrompt">BasePrompt (class in IPython.kernel.core.prompts)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.BasePrompt">(class in IPython.Prompts)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.BaseTask">BaseTask (class in IPython.kernel.task)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.BatchEngineSet">BatchEngineSet (class in IPython.kernel.scripts.ipcluster)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.BdbQuit_excepthook">BdbQuit_excepthook() (in module IPython.Debugger)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.BdbQuit_IPython_excepthook">BdbQuit_IPython_excepthook() (in module IPython.Debugger)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.PrettyPrinter.begin_group">begin_group() (IPython.external.pretty.PrettyPrinter method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.belong">belong() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.benchmark">benchmark() (IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.binary_repr">binary_repr() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.BlockingTaskClient">BlockingTaskClient (class in IPython.kernel.taskclient)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.SystemExec.bq">bq() (IPython.genutils.SystemExec method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.Breakable">Breakable (class in IPython.external.pretty)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.PrettyPrinter.breakable">breakable() (IPython.external.pretty.PrettyPrinter method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.buffered_write">buffered_write() (IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build">build() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Add">build_Add() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Const">build_Const() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Dict">build_Dict() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Getattr">build_Getattr() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_List">build_List() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Name">build_Name() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_Tuple">build_Tuple() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_UnaryAdd">build_UnaryAdd() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder.build_UnarySub">build_UnarySub() (IPython.external.configobj.Builder method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Builder">Builder (class in IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxConsoleView.buildStyles">buildStyles() (IPython.gui.wx.ipython_view.WxConsoleView method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.Bunch">Bunch (class in IPython.iplib)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.Bunch">(class in IPython.Magic)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.util.html#IPython.kernel.core.util.Bunch">(class in IPython.kernel.core.util)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.bytes">bytes() (IPython.external.path.path method)</a></dt>
</dl></td></tr></table>
<h2 id="C">C</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.testing.plugin.show_refs.html#IPython.testing.plugin.show_refs.C">C (class in IPython.testing.plugin.show_refs)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.cache_main_mod">cache_main_mod() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.CachedOutput">CachedOutput (class in IPython.kernel.core.prompts)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.CachedOutput">(class in IPython.Prompts)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobExpr.call">call() (IPython.background_jobs.BackgroundJobExpr method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobFunc.call">(IPython.background_jobs.BackgroundJobFunc method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.call_alias">call_alias() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.call_pdb">call_pdb (IPython.iplib.InteractiveShell attribute)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.callRemote">callRemote() (IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.can">can() (in module IPython.kernel.pickleutil)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.BaseTask.can_task">can_task() (IPython.kernel.task.BaseTask method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.MapTask.can_task">(IPython.kernel.task.MapTask method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.canDict">canDict() (in module IPython.kernel.pickleutil)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.CannedFunction">CannedFunction (class in IPython.kernel.pickleutil)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.CannedObject">CannedObject (class in IPython.kernel.pickleutil)</a></dt>
<dt><a href="api/generated/IPython.kernel.pickleutil.html#IPython.kernel.pickleutil.canSequence">canSequence() (in module IPython.kernel.pickleutil)</a></dt>
<dt><a href="api/generated/IPython.frontend.prefilterfrontend.html#IPython.frontend.prefilterfrontend.PrefilterFrontEnd.capture_output">capture_output() (IPython.frontend.prefilterfrontend.PrefilterFrontEnd method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.capture_output">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.util.html#IPython.kernel.util.catcher">catcher() (in module IPython.kernel.util)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.WxConsoleView.changeLine">changeLine() (IPython.gui.wx.ipython_view.WxConsoleView method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.SimpleVal.check">check() (IPython.external.configobj.SimpleVal method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.Validator.check">(IPython.external.validate.Validator method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.BaseTask.check_depend">check_depend() (IPython.kernel.task.BaseTask method)</a></dt>
<dt><a href="api/generated/IPython.kernel.fcutil.html#IPython.kernel.fcutil.check_furl_file_security">check_furl_file_security() (in module IPython.kernel.fcutil)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.DebugTools.check_hotname">check_hotname() (IPython.ipapi.DebugTools method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.check_reuse">check_reuse() (in module IPython.kernel.scripts.ipcluster)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.check_security">check_security() (in module IPython.kernel.scripts.ipcluster)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkAlias">checkAlias() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkAssignment">checkAssignment() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkAutocall">checkAutocall() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkAutomagic">checkAutomagic() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkEmacs">checkEmacs() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkEscChars">checkEscChars() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.checkIdle">checkIdle() (IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkIPyAutocall">checkIPyAutocall() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.kernel.pbutil.html#IPython.kernel.pbutil.checkMessageSize">checkMessageSize() (in module IPython.kernel.pbutil)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkMultiLineMagic">checkMultiLineMagic() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkPythonOps">checkPythonOps() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.checkReturnForFailure">checkReturnForFailure() (IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dt><a href="api/generated/IPython.prefilter.html#IPython.prefilter.checkShellEscape">checkShellEscape() (in module IPython.prefilter)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.chmod">chmod() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.chop">chop() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.chown">chown() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.chroot">chroot() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.clean_builtins">clean_builtins() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.clear">clear() (IPython.external.configobj.Section method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.clear">(IPython.ipstruct.Struct method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.display_trap.html#IPython.kernel.core.display_trap.DisplayTrap.clear">(IPython.kernel.core.display_trap.DisplayTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.output_trap.html#IPython.kernel.core.output_trap.OutputTrap.clear">(IPython.kernel.core.output_trap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.traceback_trap.html#IPython.kernel.core.traceback_trap.TracebackTrap.clear">(IPython.kernel.core.traceback_trap.TracebackTrap method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.StrictDict.clear">(IPython.kernel.engineservice.StrictDict method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.clear">(IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskclient.html#IPython.kernel.taskclient.BlockingTaskClient.clear">(IPython.kernel.taskclient.BlockingTaskClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient.clear">(IPython.kernel.taskfc.FCTaskClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.SyntaxTB.clear_err_state">clear_err_state() (IPython.iplib.SyntaxTB method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.clear_main_mod_cache">clear_main_mod_cache() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.clear_pending_deferreds">clear_pending_deferreds() (IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.pendingdeferred.html#IPython.kernel.pendingdeferred.PendingDeferredManager.clear_pending_deferreds">(IPython.kernel.pendingdeferred.PendingDeferredManager method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.clear_pending_results">clear_pending_results() (IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.clear_properties">clear_properties() (IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.clear_properties">(IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.clear_properties">(IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.clear_properties">(IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.SynchronousMultiEngine.clear_properties">(IPython.kernel.multiengine.SynchronousMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.clear_properties">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.clear_properties">(IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.clear_queue">clear_queue() (IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.clear_queue">(IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.SynchronousMultiEngine.clear_queue">(IPython.kernel.multiengine.SynchronousMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.clear_queue">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.clear_queue">(IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.clear_screen">clear_screen() (IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearDemo">ClearDemo (class in IPython.demo)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearIPDemo">ClearIPDemo (class in IPython.demo)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.ClearMixin">ClearMixin (class in IPython.demo)</a></dt>
<dt><a href="api/generated/IPython.kernel.clientconnector.html#IPython.kernel.clientconnector.ClientConnector">ClientConnector (class in IPython.kernel.clientconnector)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ClientError">ClientError (class in IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.clipboard_get">clipboard_get() (in module IPython.hooks)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.IOStream.close">close() (IPython.genutils.IOStream method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.irunner.html#IPython.irunner.InteractiveRunner.close">(IPython.irunner.InteractiveRunner method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.file_like.html#IPython.kernel.core.file_like.FileLike.close">(IPython.kernel.core.file_like.FileLike method)</a></dt>
<dt><a href="api/generated/IPython.testing.mkdoctests.html#IPython.testing.mkdoctests.IndentOut.close">(IPython.testing.mkdoctests.IndentOut method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.Logger.html#IPython.Logger.Logger.close_log">close_log() (IPython.Logger.Logger method)</a></dt>
<dt><a href="api/generated/IPython.kernel.codeutil.html#IPython.kernel.codeutil.code_ctor">code_ctor() (in module IPython.kernel.codeutil)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.collect_exceptions">collect_exceptions() (in module IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.TBTools.color_toggle">color_toggle() (IPython.ultraTB.TBTools method)</a></dt>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorScheme">ColorScheme (class in IPython.ColorANSI)</a></dt>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorSchemeTable">ColorSchemeTable (class in IPython.ColorANSI)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.ColorTB">ColorTB (class in IPython.ultraTB)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.Command">Command (class in IPython.kernel.engineservice)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.CommandChainDispatcher">CommandChainDispatcher (class in IPython.hooks)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.common_prefix">common_prefix() (in module IPython.frontend.linefrontendbase)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.Completer.complete">complete() (IPython.completer.Completer method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.complete">(IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.complete">(IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.prefilterfrontend.html#IPython.frontend.prefilterfrontend.PrefilterFrontEnd.complete">(IPython.frontend.prefilterfrontend.PrefilterFrontEnd method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipshell_nonblocking.html#IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell.complete">(IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.complete">(IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.complete">(IPython.kernel.core.interpreter.Interpreter method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.complete_current_input">complete_current_input() (IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.generics.html#IPython.generics.complete_object">complete_object() (in module IPython.generics)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.Completer">Completer (class in IPython.completer)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.CompositeError">CompositeError (class in IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.compress_dhist">compress_dhist() (in module IPython.Magic)</a></dt>
<dt><a href="api/generated/IPython.kernel.map.html#IPython.kernel.map.Map.concatenate">concatenate() (IPython.kernel.map.Map method)</a></dt>
<dt><a href="api/generated/IPython.ConfigLoader.html#IPython.ConfigLoader.ConfigLoader">ConfigLoader (class in IPython.ConfigLoader)</a></dt>
<dt><a href="api/generated/IPython.ConfigLoader.html#IPython.ConfigLoader.ConfigLoaderError">ConfigLoaderError (class in IPython.ConfigLoader)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigObj">ConfigObj (class in IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigObjError">ConfigObjError (class in IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.config.api.html#IPython.config.api.ConfigObjManager">ConfigObjManager (class in IPython.config.api)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigParserInterpolation">ConfigParserInterpolation (class in IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.ConfigspecError">ConfigspecError (class in IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.console_widget.html#IPython.frontend.wx.console_widget.ConsoleWidget.configure_scintilla">configure_scintilla() (IPython.frontend.wx.console_widget.ConsoleWidget method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineconnector.html#IPython.kernel.engineconnector.EngineConnector.connect_to_controller">connect_to_controller() (IPython.kernel.engineconnector.EngineConnector method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.ConnectionError">ConnectionError (class in IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.LauncherProcessProtocol.connectionMade">connectionMade() (IPython.kernel.scripts.ipcluster.LauncherProcessProtocol method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.console_widget.html#IPython.frontend.wx.console_widget.ConsoleWidget">ConsoleWidget (class in IPython.frontend.wx.console_widget)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.FormattedTB.context">context() (IPython.ultraTB.FormattedTB method)</a></dt>
<dt><a href="api/generated/IPython.frontend.frontendbase.html#IPython.frontend.frontendbase.FrontEndBase.continuation_prompt">continuation_prompt() (IPython.frontend.frontendbase.FrontEndBase method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.continuation_prompt">(IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.console_widget.html#IPython.frontend.wx.console_widget.ConsoleWidget.continuation_prompt">(IPython.frontend.wx.console_widget.ConsoleWidget method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.continuation_prompt">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.ControllerAdapterBase">ControllerAdapterBase (class in IPython.kernel.controllerservice)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.ControllerCreationError">ControllerCreationError (class in IPython.kernel.core.error)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.ControllerError">ControllerError (class in IPython.kernel.core.error)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ControllerLauncher">ControllerLauncher (class in IPython.kernel.scripts.ipcluster)</a></dt>
<dt><a href="api/generated/IPython.kernel.controllerservice.html#IPython.kernel.controllerservice.ControllerService">ControllerService (class in IPython.kernel.controllerservice)</a></dt>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorScheme.copy">copy() (IPython.ColorANSI.ColorScheme method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.ColorANSI.html#IPython.ColorANSI.ColorSchemeTable.copy">(IPython.ColorANSI.ColorSchemeTable method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copy">(IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.copy">(IPython.ipstruct.Struct method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copy2">copy2() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copyfile">copyfile() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copymode">copymode() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copystat">copystat() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.copytree">copytree() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.CrashHandler.html#IPython.CrashHandler.CrashHandler">CrashHandler (class in IPython.CrashHandler)</a></dt>
<dt><a href="api/generated/IPython.wildcard.html#IPython.wildcard.create_typestr2type_dicts">create_typestr2type_dicts() (in module IPython.wildcard)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.wxIPython.html#IPython.gui.wx.wxIPython.MyFrame.createMenu">createMenu() (IPython.gui.wx.wxIPython.MyFrame method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.wxIPython.html#IPython.gui.wx.wxIPython.MyFrame.createStatus">createStatus() (IPython.gui.wx.wxIPython.MyFrame method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.ctime">ctime (IPython.external.path.path attribute)</a></dt>
<dt><a href="api/generated/IPython.kernel.util.html#IPython.kernel.util.curry">curry() (in module IPython.kernel.util)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.BasePrompt.cwd_filt">cwd_filt() (IPython.kernel.core.prompts.BasePrompt method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.BasePrompt.cwd_filt">(IPython.Prompts.BasePrompt method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.BasePrompt.cwd_filt2">cwd_filt2() (IPython.kernel.core.prompts.BasePrompt method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.BasePrompt.cwd_filt2">(IPython.Prompts.BasePrompt method)</a></dt>
</dl></dd>
</dl></td></tr></table>
<h2 id="D">D</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.db">db (IPython.ipapi.IPApi attribute)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.DebugTools.debug_stack">debug_stack() (IPython.ipapi.DebugTools method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.debugger">debugger() (IPython.iplib.InteractiveShell method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.VerboseTB.debugger">(IPython.ultraTB.VerboseTB method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.DebugTools">DebugTools (class in IPython.ipapi)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.debugx">debugx() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.decode">decode() (IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.decorate_fn_with_doc">decorate_fn_with_doc() (in module IPython.Debugger)</a></dt>
<dt><a href="api/generated/IPython.testing.decorator_msim.html#IPython.testing.decorator_msim.decorator">decorator() (in module IPython.testing.decorator_msim)</a></dt>
<dt><a href="api/generated/IPython.deep_reload.html#IPython.deep_reload.deep_import_hook">deep_import_hook() (in module IPython.deep_reload)</a></dt>
<dt><a href="api/generated/IPython.deep_reload.html#IPython.deep_reload.deep_reload_hook">deep_reload_hook() (in module IPython.deep_reload)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.defalias">defalias() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.default_display_formatters">default_display_formatters() (in module IPython.kernel.core.interpreter)</a></dt>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.Magic.default_option">default_option() (IPython.Magic.Magic method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.default_traceback_formatters">default_traceback_formatters() (in module IPython.kernel.core.interpreter)</a></dt>
<dt><a href="api/generated/IPython.kernel.twistedutil.html#IPython.kernel.twistedutil.DeferredList">DeferredList (class in IPython.kernel.twistedutil)</a></dt>
<dt><a href="api/generated/IPython.testing.util.html#IPython.testing.util.DeferredTestCase">DeferredTestCase (class in IPython.testing.util)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.defmacro">defmacro() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.del_properties">del_properties() (IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.del_properties">(IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.del_properties">(IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.del_properties">(IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.SynchronousMultiEngine.del_properties">(IPython.kernel.multiengine.SynchronousMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.del_properties">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.del_properties">(IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.pendingdeferred.html#IPython.kernel.pendingdeferred.PendingDeferredManager.delete_pending_deferred">delete_pending_deferred() (IPython.kernel.pendingdeferred.PendingDeferredManager method)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.Demo">Demo (class in IPython.demo)</a></dt>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.DemoError">DemoError (class in IPython.demo)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.GroupQueue.deq">deq() (IPython.external.pretty.GroupQueue method)</a></dt>
<dt><a href="api/generated/IPython.deep_reload.html#IPython.deep_reload.determine_parent">determine_parent() (in module IPython.deep_reload)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.dgrep">dgrep() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.dhook_wrap">dhook_wrap() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.diagonal_matrix">diagonal_matrix() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.dict">dict() (IPython.external.configobj.Section method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.dict">(IPython.ipstruct.Struct method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.ipstruct.html#IPython.ipstruct.Struct.dictcopy">dictcopy() (IPython.ipstruct.Struct method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.dir2">dir2() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.dirname">dirname() (IPython.external.path.path method)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.dirs">dirs() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.strdispatch.html#IPython.strdispatch.StrDispatch.dispatch">dispatch() (IPython.strdispatch.StrDispatch method)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.dispatch_custom_completer">dispatch_custom_completer() (IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.CachedOutput.display">display() (IPython.kernel.core.prompts.CachedOutput method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.CachedOutput.display">(IPython.Prompts.CachedOutput method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.display_trap.html#IPython.kernel.core.display_trap.DisplayTrap">DisplayTrap (class in IPython.kernel.core.display_trap)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.distributeTasks">distributeTasks() (IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.do_calltip">do_calltip() (IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_d">do_d() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_down">do_down() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipshell_nonblocking.html#IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell.do_execute">do_execute() (IPython.gui.wx.ipshell_nonblocking.NonBlockingIPShell method)</a></dt>
<dt><a href="api/generated/IPython.frontend.prefilterfrontend.html#IPython.frontend.prefilterfrontend.PrefilterFrontEnd.do_exit">do_exit() (IPython.frontend.prefilterfrontend.PrefilterFrontEnd method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.wx.ipythonx.html#IPython.frontend.wx.ipythonx.IPythonXController.do_exit">(IPython.frontend.wx.ipythonx.IPythonXController method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_l">do_l() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_list">do_list() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_pdef">do_pdef() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_pdoc">do_pdoc() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_pinfo">do_pinfo() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_q">do_q() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_quit">do_quit() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_u">do_u() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.Debugger.html#IPython.Debugger.Pdb.do_up">do_up() (IPython.Debugger.Pdb method)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_refs.html#IPython.testing.plugin.test_refs.doctest_ivars">doctest_ivars() (in module IPython.testing.plugin.test_refs)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_ipdoctest.html#IPython.testing.plugin.test_ipdoctest.doctest_multiline1">doctest_multiline1() (in module IPython.testing.plugin.test_ipdoctest)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_ipdoctest.html#IPython.testing.plugin.test_ipdoctest.doctest_multiline2">doctest_multiline2() (in module IPython.testing.plugin.test_ipdoctest)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_ipdoctest.html#IPython.testing.plugin.test_ipdoctest.doctest_multiline3">doctest_multiline3() (in module IPython.testing.plugin.test_ipdoctest)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_refs.html#IPython.testing.plugin.test_refs.doctest_refs">doctest_refs() (in module IPython.testing.plugin.test_refs)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.doctest_reload">doctest_reload() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_refs.html#IPython.testing.plugin.test_refs.doctest_run">doctest_run() (in module IPython.testing.plugin.test_refs)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_ipdoctest.html#IPython.testing.plugin.test_ipdoctest.doctest_run_builtins">doctest_run_builtins() (in module IPython.testing.plugin.test_ipdoctest)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_refs.html#IPython.testing.plugin.test_refs.doctest_runvars">doctest_runvars() (in module IPython.testing.plugin.test_refs)</a></dt>
<dt><a href="api/generated/IPython.testing.plugin.test_ipdoctest.html#IPython.testing.plugin.test_ipdoctest.doctest_simple">doctest_simple() (in module IPython.testing.plugin.test_ipdoctest)</a></dt>
<dt><a href="api/generated/IPython.external.validate.html#IPython.external.validate.dottedQuadToNum">dottedQuadToNum() (in module IPython.external.validate)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.DPyGetOpt">DPyGetOpt (class in IPython.DPyGetOpt)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.drive">drive (IPython.external.path.path attribute)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.drop_engine">drop_engine() (in module IPython.kernel.engineservice)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.DuplicateError">DuplicateError (class in IPython.external.configobj)</a></dt>
</dl></td></tr></table>
<h2 id="E">E</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.demo.html#IPython.demo.Demo.edit">edit() (IPython.demo.Demo method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.edit_syntax_error">edit_syntax_error() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.editor">editor() (in module IPython.hooks)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.embed_mainloop">embed_mainloop() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.empty_like">empty_like() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.Section.encode">encode() (IPython.external.configobj.Section method)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.PrettyPrinter.end_group">end_group() (IPython.external.pretty.PrettyPrinter method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.HelpFormatter.end_section">end_section() (IPython.external.argparse.HelpFormatter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineAPI">EngineAPI (class in IPython.kernel.engineservice)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineconnector.html#IPython.kernel.engineconnector.EngineConnector">EngineConnector (class in IPython.kernel.engineconnector)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.EngineCreationError">EngineCreationError (class in IPython.kernel.core.error)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.error.html#IPython.kernel.core.error.EngineError">EngineError (class in IPython.kernel.core.error)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference">EngineFromReference (class in IPython.kernel.enginefc)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.EngineLauncher">EngineLauncher (class in IPython.kernel.scripts.ipcluster)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.engineList">engineList() (IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService">EngineService (class in IPython.kernel.engineservice)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.GroupQueue.enq">enq() (IPython.external.pretty.GroupQueue method)</a></dt>
<dt><a href="api/generated/IPython.deep_reload.html#IPython.deep_reload.ensure_fromlist">ensure_fromlist() (in module IPython.deep_reload)</a></dt>
<dt>environment variable</dt>
<dd><dl>
<dt><a href="overview.html#index-0">PATH</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.output_trap.html#IPython.kernel.core.output_trap.OutputTrap.err_text">err_text (IPython.kernel.core.output_trap.OutputTrap attribute)</a></dt>
<dt><a href="api/generated/IPython.DPyGetOpt.html#IPython.DPyGetOpt.Error">Error (class in IPython.DPyGetOpt)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.Error">(class in IPython.genutils)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.error">error() (in module IPython.genutils)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentParser.error">(IPython.external.argparse.ArgumentParser method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.error">(IPython.kernel.core.interpreter.Interpreter method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.LauncherProcessProtocol.errReceived">errReceived() (IPython.kernel.scripts.ipcluster.LauncherProcessProtocol method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.esc_quotes">esc_quotes() (in module IPython.genutils)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.core.util.html#IPython.kernel.core.util.esc_quotes">(in module IPython.kernel.core.util)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.ev">ev() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.EvalDict">EvalDict (class in IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.IPythonHistoryPanel.evtCheckCmdFilter">evtCheckCmdFilter() (IPython.gui.wx.ipython_history.IPythonHistoryPanel method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.IPythonHistoryPanel.evtCheckDocFilter">evtCheckDocFilter() (IPython.gui.wx.ipython_history.IPythonHistoryPanel method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.IPythonHistoryPanel.evtCheckEmptyFilter">evtCheckEmptyFilter() (IPython.gui.wx.ipython_history.IPythonHistoryPanel method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.IPythonHistoryPanel.evtCheckMagicFilter">evtCheckMagicFilter() (IPython.gui.wx.ipython_history.IPythonHistoryPanel method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.evtCheckOptionBackgroundColor">evtCheckOptionBackgroundColor() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.evtCheckOptionCompletion">evtCheckOptionCompletion() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.evtCheckOptionThreading">evtCheckOptionThreading() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.gui.wx.ipython_view.html#IPython.gui.wx.ipython_view.IPShellWidget.evtStateExecuteDone">evtStateExecuteDone() (IPython.gui.wx.ipython_view.IPShellWidget method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.ex">ex() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.excepthook">excepthook() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.excolors.html#IPython.excolors.exception_colors">exception_colors() (in module IPython.excolors)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.exec_init_cmd">exec_init_cmd() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.frontend.asyncfrontendbase.html#IPython.frontend.asyncfrontendbase.AsyncFrontEndBase.execute">execute() (IPython.frontend.asyncfrontendbase.AsyncFrontEndBase method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.frontendbase.html#IPython.frontend.frontendbase.FrontEndBase.execute">(IPython.frontend.frontendbase.FrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.execute">(IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dt><a href="api/generated/IPython.frontend.prefilterfrontend.html#IPython.frontend.prefilterfrontend.PrefilterFrontEnd.execute">(IPython.frontend.prefilterfrontend.PrefilterFrontEnd method)</a></dt>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.execute">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.execute">(IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.EngineFromReference.execute">(IPython.kernel.enginefc.EngineFromReference method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.execute">(IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.execute">(IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.ThreadedEngineService.execute">(IPython.kernel.engineservice.ThreadedEngineService method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.MultiEngine.execute">(IPython.kernel.multiengine.MultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengine.html#IPython.kernel.multiengine.SynchronousMultiEngine.execute">(IPython.kernel.multiengine.SynchronousMultiEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.execute">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient.execute">(IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.execute_block">execute_block() (IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.frontend.linefrontendbase.html#IPython.frontend.linefrontendbase.LineFrontEndBase.execute_command">execute_command() (IPython.frontend.linefrontendbase.LineFrontEndBase method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.frontend.wx.wx_frontend.html#IPython.frontend.wx.wx_frontend.WxController.execute_command">(IPython.frontend.wx.wx_frontend.WxController method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.execute_macro">execute_macro() (IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.execute_python">execute_python() (IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.EngineService.executeAndRaise">executeAndRaise() (IPython.kernel.engineservice.EngineService method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.exists">exists() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.ArgumentParser.exit">exit() (IPython.external.argparse.ArgumentParser method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.exit">(IPython.iplib.InteractiveShell method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.numutils.html#IPython.numutils.exp_safe">exp_safe() (in module IPython.numutils)</a></dt>
<dt><a href="api/generated/IPython.external.mglob.html#IPython.external.mglob.expand">expand() (in module IPython.external.mglob)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.expand">(IPython.external.path.path method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.gui.wx.ipython_history.html#IPython.gui.wx.ipython_history.PythonSTC.Expand">Expand() (IPython.gui.wx.ipython_history.PythonSTC method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.expand_alias">expand_alias() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.iplib.html#IPython.iplib.InteractiveShell.expand_aliases">expand_aliases() (IPython.iplib.InteractiveShell method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.expanduser">expanduser() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.expandvars">expandvars() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.ipapi.html#IPython.ipapi.IPApi.expose_magic">expose_magic() (IPython.ipapi.IPApi method)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.ext">ext (IPython.external.path.path attribute)</a></dt>
<dt><a href="api/generated/IPython.external.guid.html#IPython.external.guid.extract_counter">extract_counter() (in module IPython.external.guid)</a></dt>
<dt><a href="api/generated/IPython.Magic.html#IPython.Magic.Magic.extract_input_slices">extract_input_slices() (IPython.Magic.Magic method)</a></dt>
<dt><a href="api/generated/IPython.external.guid.html#IPython.external.guid.extract_ip">extract_ip() (in module IPython.external.guid)</a></dt>
<dt><a href="api/generated/IPython.external.guid.html#IPython.external.guid.extract_time">extract_time() (in module IPython.external.guid)</a></dt>
<dt><a href="api/generated/IPython.tools.utils.html#IPython.tools.utils.extractVars">extractVars() (in module IPython.tools.utils)</a></dt>
<dt><a href="api/generated/IPython.tools.utils.html#IPython.tools.utils.extractVarsAbove">extractVarsAbove() (in module IPython.tools.utils)</a></dt>
</dl></td></tr></table>
<h2 id="F">F</h2>
<table width="100%" class="indextable"><tr><td width="33%" valign="top">
<dl>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.TaskController.failIdle">failIdle() (IPython.kernel.task.TaskController method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.fatal">fatal() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.FCEngineReferenceFromService">FCEngineReferenceFromService (class in IPython.kernel.enginefc)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCFullSynchronousMultiEngineClient">FCFullSynchronousMultiEngineClient (class in IPython.kernel.multienginefc)</a></dt>
<dt><a href="api/generated/IPython.kernel.enginefc.html#IPython.kernel.enginefc.FCRemoteEngineRefFromService">FCRemoteEngineRefFromService (class in IPython.kernel.enginefc)</a></dt>
<dt><a href="api/generated/IPython.kernel.multienginefc.html#IPython.kernel.multienginefc.FCSynchronousMultiEngineFromMultiEngine">FCSynchronousMultiEngineFromMultiEngine (class in IPython.kernel.multienginefc)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskClient">FCTaskClient (class in IPython.kernel.taskfc)</a></dt>
<dt><a href="api/generated/IPython.kernel.taskfc.html#IPython.kernel.taskfc.FCTaskControllerFromTaskController">FCTaskControllerFromTaskController (class in IPython.kernel.taskfc)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.fd_redirector.html#IPython.kernel.core.fd_redirector.FDRedirector">FDRedirector (class in IPython.kernel.core.fd_redirector)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.interpreter.html#IPython.kernel.core.interpreter.Interpreter.feed_block">feed_block() (IPython.kernel.core.interpreter.Interpreter method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.SList.fields">fields() (IPython.genutils.SList method)</a></dt>
<dt><a href="api/generated/IPython.kernel.task.html#IPython.kernel.task.FIFOScheduler">FIFOScheduler (class in IPython.kernel.task)</a></dt>
<dt><a href="api/generated/IPython.completer.html#IPython.completer.IPCompleter.file_matches">file_matches() (IPython.completer.IPCompleter method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.file_read">file_read() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.file_readlines">file_readlines() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.filefind">filefind() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.file_like.html#IPython.kernel.core.file_like.FileLike">FileLike (class in IPython.kernel.core.file_like)</a></dt>
<dt><a href="api/generated/IPython.external.path.html#IPython.external.path.path.files">files() (IPython.external.path.path method)</a></dt>
<dt><a href="api/generated/IPython.kernel.error.html#IPython.kernel.error.FileTimeoutError">FileTimeoutError (class in IPython.kernel.error)</a></dt>
<dt><a href="api/generated/IPython.external.argparse.html#IPython.external.argparse.FileType">FileType (class in IPython.external.argparse)</a></dt>
<dt><a href="api/generated/IPython.external.Itpl.html#IPython.external.Itpl.filter">filter() (in module IPython.external.Itpl)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.wildcard.html#IPython.wildcard.NameSpace.filter">(IPython.wildcard.NameSpace method)</a></dt>
<dt><a href="api/generated/IPython.Itpl.html#IPython.Itpl.filter">(in module IPython.Itpl)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.platutils.html#IPython.platutils.find_cmd">find_cmd() (in module IPython.platutils)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.platutils_dummy.html#IPython.platutils_dummy.find_cmd">(in module IPython.platutils_dummy)</a></dt>
<dt><a href="api/generated/IPython.platutils_posix.html#IPython.platutils_posix.find_cmd">(in module IPython.platutils_posix)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.fcutil.html#IPython.kernel.fcutil.find_furl">find_furl() (in module IPython.kernel.fcutil)</a></dt>
<dt><a href="api/generated/IPython.deep_reload.html#IPython.deep_reload.find_head_package">find_head_package() (in module IPython.deep_reload)</a></dt>
<dt><a href="api/generated/IPython.platutils.html#IPython.platutils.FindCmdError">FindCmdError (class in IPython.platutils)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.findsource">findsource() (in module IPython.ultraTB)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.kernel.contexts.html#IPython.kernel.contexts.RemoteContextBase.findsource">(IPython.kernel.contexts.RemoteContextBase method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.InteractiveMultiEngineClient.findsource_file">findsource_file() (IPython.kernel.multiengineclient.InteractiveMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.InteractiveMultiEngineClient.findsource_ipython">findsource_ipython() (IPython.kernel.multiengineclient.InteractiveMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.kernel.engineservice.html#IPython.kernel.engineservice.QueuedEngine.finishCommand">finishCommand() (IPython.kernel.engineservice.QueuedEngine method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ProcessLauncher.fire_start_deferred">fire_start_deferred() (IPython.kernel.scripts.ipcluster.ProcessLauncher method)</a></dt>
<dt><a href="api/generated/IPython.kernel.scripts.ipcluster.html#IPython.kernel.scripts.ipcluster.ProcessLauncher.fire_stop_deferred">fire_stop_deferred() (IPython.kernel.scripts.ipcluster.ProcessLauncher method)</a></dt>
<dt><a href="api/generated/IPython.hooks.html#IPython.hooks.fix_error_editor">fix_error_editor() (in module IPython.hooks)</a></dt>
<dt><a href="api/generated/IPython.ultraTB.html#IPython.ultraTB.fix_frame_records_filenames">fix_frame_records_filenames() (in module IPython.ultraTB)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.flag_calls">flag_calls() (in module IPython.genutils)</a></dt></dl></td><td width="33%" valign="top"><dl>
<dt><a href="api/generated/IPython.strdispatch.html#IPython.strdispatch.StrDispatch.flat_matches">flat_matches() (IPython.strdispatch.StrDispatch method)</a></dt>
<dt><a href="api/generated/IPython.genutils.html#IPython.genutils.flatten">flatten() (in module IPython.genutils)</a></dt>
<dt><a href="api/generated/IPython.external.configobj.html#IPython.external.configobj.flatten_errors">flatten_errors() (in module IPython.external.configobj)</a></dt>
<dt><a href="api/generated/IPython.external.pretty.html#IPython.external.pretty.PrettyPrinter.flush">flush() (IPython.external.pretty.PrettyPrinter method)</a></dt>
<dd><dl>
<dt><a href="api/generated/IPython.OutputTrap.html#IPython.OutputTrap.OutputTrap.flush">(IPython.OutputTrap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.Prompts.html#IPython.Prompts.CachedOutput.flush">(IPython.Prompts.CachedOutput method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.fd_redirector.html#IPython.kernel.core.fd_redirector.FDRedirector.flush">(IPython.kernel.core.fd_redirector.FDRedirector method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.file_like.html#IPython.kernel.core.file_like.FileLike.flush">(IPython.kernel.core.file_like.FileLike method)</a></dt>
<dt><a href="api/generated/IPython.kernel.core.prompts.html#IPython.kernel.core.prompts.CachedOutput.flush">(IPython.kernel.core.prompts.CachedOutput method)</a></dt>
<dt><a href="api/generated/IPython.kernel.multiengineclient.html#IPython.kernel.multiengineclient.FullBlockingMultiEngineClient.flush">(IPython.kernel.multiengineclient.FullBlockingMultiEngineClient method)</a></dt>
<dt><a href="api/generated/IPython.testing.mkdoctests.html#IPython.testing.mkdoctests.IndentOut.flush">(IPython.testing.mkdoctests.IndentOut method)</a></dt>
</dl></dd>
<dt><a href="api/generated/IPython.OutputTrap.html#IPython.OutputTrap.OutputTrap.flush_all">flush_all() (IPython.OutputTrap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.OutputTrap.html#IPython.OutputTrap.OutputTrap.flush_err">flush_err() (IPython.OutputTrap.OutputTrap method)</a></dt>
<dt><a href="api/generated/IPython.background_jobs.html#IPython.background_jobs.BackgroundJobManager.flush_finished">flush_finished() (IPython.background_jobs.BackgroundJobManager method)</a></dt>