PythonExtensionsCollection 0.2.0__py3-none-any.whl → 0.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. PythonExtensionsCollection/Comparison/CComparison.py +341 -0
  2. PythonExtensionsCollection/Comparison/__init__.py +13 -0
  3. PythonExtensionsCollection/File/CFile.py +326 -106
  4. PythonExtensionsCollection/File/__init__.py +1 -1
  5. PythonExtensionsCollection/Folder/CFolder.py +460 -0
  6. PythonExtensionsCollection/Folder/__init__.py +13 -0
  7. PythonExtensionsCollection/PythonExtensionsCollection.pdf +0 -0
  8. PythonExtensionsCollection/String/CString.py +128 -344
  9. PythonExtensionsCollection/String/__init__.py +1 -1
  10. PythonExtensionsCollection/Utils/CUtils.py +77 -74
  11. PythonExtensionsCollection/Utils/__init__.py +1 -1
  12. PythonExtensionsCollection/__init__.py +1 -1
  13. PythonExtensionsCollection/version.py +23 -0
  14. {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/METADATA +57 -44
  15. PythonExtensionsCollection-0.13.0.dist-info/RECORD +18 -0
  16. {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/WHEEL +1 -1
  17. PythonExtensionsCollection/doc/.buildinfo +0 -4
  18. PythonExtensionsCollection/doc/File.html +0 -315
  19. PythonExtensionsCollection/doc/String.html +0 -590
  20. PythonExtensionsCollection/doc/Utils.html +0 -209
  21. PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/File/CFile.html +0 -960
  22. PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/String/CString.html +0 -1221
  23. PythonExtensionsCollection/doc/_modules/PythonExtensionsCollection/Utils/CUtils.html +0 -431
  24. PythonExtensionsCollection/doc/_modules/index.html +0 -106
  25. PythonExtensionsCollection/doc/_sources/File.rst.txt +0 -28
  26. PythonExtensionsCollection/doc/_sources/String.rst.txt +0 -28
  27. PythonExtensionsCollection/doc/_sources/Utils.rst.txt +0 -28
  28. PythonExtensionsCollection/doc/_sources/additional_doc/Introduction.rst.txt +0 -365
  29. PythonExtensionsCollection/doc/_sources/index.rst.txt +0 -27
  30. PythonExtensionsCollection/doc/_static/_sphinx_javascript_frameworks_compat.js +0 -134
  31. PythonExtensionsCollection/doc/_static/alabaster.css +0 -701
  32. PythonExtensionsCollection/doc/_static/basic.css +0 -930
  33. PythonExtensionsCollection/doc/_static/custom.css +0 -1
  34. PythonExtensionsCollection/doc/_static/doctools.js +0 -264
  35. PythonExtensionsCollection/doc/_static/documentation_options.js +0 -14
  36. PythonExtensionsCollection/doc/_static/file.png +0 -0
  37. PythonExtensionsCollection/doc/_static/jquery-3.6.0.js +0 -10881
  38. PythonExtensionsCollection/doc/_static/jquery.js +0 -2
  39. PythonExtensionsCollection/doc/_static/language_data.js +0 -199
  40. PythonExtensionsCollection/doc/_static/minus.png +0 -0
  41. PythonExtensionsCollection/doc/_static/plus.png +0 -0
  42. PythonExtensionsCollection/doc/_static/pygments.css +0 -82
  43. PythonExtensionsCollection/doc/_static/searchtools.js +0 -531
  44. PythonExtensionsCollection/doc/_static/underscore-1.13.1.js +0 -2042
  45. PythonExtensionsCollection/doc/_static/underscore.js +0 -6
  46. PythonExtensionsCollection/doc/additional_doc/Introduction.html +0 -365
  47. PythonExtensionsCollection/doc/genindex.html +0 -292
  48. PythonExtensionsCollection/doc/index.html +0 -123
  49. PythonExtensionsCollection/doc/objects.inv +0 -0
  50. PythonExtensionsCollection/doc/py-modindex.html +0 -138
  51. PythonExtensionsCollection/doc/search.html +0 -127
  52. PythonExtensionsCollection/doc/searchindex.js +0 -1
  53. PythonExtensionsCollection-0.2.0.dist-info/RECORD +0 -48
  54. {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/LICENSE +0 -0
  55. {PythonExtensionsCollection-0.2.0.dist-info → PythonExtensionsCollection-0.13.0.dist-info}/top_level.txt +0 -0
@@ -1,930 +0,0 @@
1
- /*
2
- * basic.css
3
- * ~~~~~~~~~
4
- *
5
- * Sphinx stylesheet -- basic theme.
6
- *
7
- * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS.
8
- * :license: BSD, see LICENSE for details.
9
- *
10
- */
11
-
12
- /* -- main layout ----------------------------------------------------------- */
13
-
14
- div.clearer {
15
- clear: both;
16
- }
17
-
18
- div.section::after {
19
- display: block;
20
- content: '';
21
- clear: left;
22
- }
23
-
24
- /* -- relbar ---------------------------------------------------------------- */
25
-
26
- div.related {
27
- width: 100%;
28
- font-size: 90%;
29
- }
30
-
31
- div.related h3 {
32
- display: none;
33
- }
34
-
35
- div.related ul {
36
- margin: 0;
37
- padding: 0 0 0 10px;
38
- list-style: none;
39
- }
40
-
41
- div.related li {
42
- display: inline;
43
- }
44
-
45
- div.related li.right {
46
- float: right;
47
- margin-right: 5px;
48
- }
49
-
50
- /* -- sidebar --------------------------------------------------------------- */
51
-
52
- div.sphinxsidebarwrapper {
53
- padding: 10px 5px 0 10px;
54
- }
55
-
56
- div.sphinxsidebar {
57
- float: left;
58
- width: 230px;
59
- margin-left: -100%;
60
- font-size: 90%;
61
- word-wrap: break-word;
62
- overflow-wrap : break-word;
63
- }
64
-
65
- div.sphinxsidebar ul {
66
- list-style: none;
67
- }
68
-
69
- div.sphinxsidebar ul ul,
70
- div.sphinxsidebar ul.want-points {
71
- margin-left: 20px;
72
- list-style: square;
73
- }
74
-
75
- div.sphinxsidebar ul ul {
76
- margin-top: 0;
77
- margin-bottom: 0;
78
- }
79
-
80
- div.sphinxsidebar form {
81
- margin-top: 10px;
82
- }
83
-
84
- div.sphinxsidebar input {
85
- border: 1px solid #98dbcc;
86
- font-family: sans-serif;
87
- font-size: 1em;
88
- }
89
-
90
- div.sphinxsidebar #searchbox form.search {
91
- overflow: hidden;
92
- }
93
-
94
- div.sphinxsidebar #searchbox input[type="text"] {
95
- float: left;
96
- width: 80%;
97
- padding: 0.25em;
98
- box-sizing: border-box;
99
- }
100
-
101
- div.sphinxsidebar #searchbox input[type="submit"] {
102
- float: left;
103
- width: 20%;
104
- border-left: none;
105
- padding: 0.25em;
106
- box-sizing: border-box;
107
- }
108
-
109
-
110
- img {
111
- border: 0;
112
- max-width: 100%;
113
- }
114
-
115
- /* -- search page ----------------------------------------------------------- */
116
-
117
- ul.search {
118
- margin: 10px 0 0 20px;
119
- padding: 0;
120
- }
121
-
122
- ul.search li {
123
- padding: 5px 0 5px 20px;
124
- background-image: url(file.png);
125
- background-repeat: no-repeat;
126
- background-position: 0 7px;
127
- }
128
-
129
- ul.search li a {
130
- font-weight: bold;
131
- }
132
-
133
- ul.search li p.context {
134
- color: #888;
135
- margin: 2px 0 0 30px;
136
- text-align: left;
137
- }
138
-
139
- ul.keywordmatches li.goodmatch a {
140
- font-weight: bold;
141
- }
142
-
143
- /* -- index page ------------------------------------------------------------ */
144
-
145
- table.contentstable {
146
- width: 90%;
147
- margin-left: auto;
148
- margin-right: auto;
149
- }
150
-
151
- table.contentstable p.biglink {
152
- line-height: 150%;
153
- }
154
-
155
- a.biglink {
156
- font-size: 1.3em;
157
- }
158
-
159
- span.linkdescr {
160
- font-style: italic;
161
- padding-top: 5px;
162
- font-size: 90%;
163
- }
164
-
165
- /* -- general index --------------------------------------------------------- */
166
-
167
- table.indextable {
168
- width: 100%;
169
- }
170
-
171
- table.indextable td {
172
- text-align: left;
173
- vertical-align: top;
174
- }
175
-
176
- table.indextable ul {
177
- margin-top: 0;
178
- margin-bottom: 0;
179
- list-style-type: none;
180
- }
181
-
182
- table.indextable > tbody > tr > td > ul {
183
- padding-left: 0em;
184
- }
185
-
186
- table.indextable tr.pcap {
187
- height: 10px;
188
- }
189
-
190
- table.indextable tr.cap {
191
- margin-top: 10px;
192
- background-color: #f2f2f2;
193
- }
194
-
195
- img.toggler {
196
- margin-right: 3px;
197
- margin-top: 3px;
198
- cursor: pointer;
199
- }
200
-
201
- div.modindex-jumpbox {
202
- border-top: 1px solid #ddd;
203
- border-bottom: 1px solid #ddd;
204
- margin: 1em 0 1em 0;
205
- padding: 0.4em;
206
- }
207
-
208
- div.genindex-jumpbox {
209
- border-top: 1px solid #ddd;
210
- border-bottom: 1px solid #ddd;
211
- margin: 1em 0 1em 0;
212
- padding: 0.4em;
213
- }
214
-
215
- /* -- domain module index --------------------------------------------------- */
216
-
217
- table.modindextable td {
218
- padding: 2px;
219
- border-collapse: collapse;
220
- }
221
-
222
- /* -- general body styles --------------------------------------------------- */
223
-
224
- div.body {
225
- min-width: 360px;
226
- max-width: 800px;
227
- }
228
-
229
- div.body p, div.body dd, div.body li, div.body blockquote {
230
- -moz-hyphens: auto;
231
- -ms-hyphens: auto;
232
- -webkit-hyphens: auto;
233
- hyphens: auto;
234
- }
235
-
236
- a.headerlink {
237
- visibility: hidden;
238
- }
239
-
240
- a.brackets:before,
241
- span.brackets > a:before{
242
- content: "[";
243
- }
244
-
245
- a.brackets:after,
246
- span.brackets > a:after {
247
- content: "]";
248
- }
249
-
250
- h1:hover > a.headerlink,
251
- h2:hover > a.headerlink,
252
- h3:hover > a.headerlink,
253
- h4:hover > a.headerlink,
254
- h5:hover > a.headerlink,
255
- h6:hover > a.headerlink,
256
- dt:hover > a.headerlink,
257
- caption:hover > a.headerlink,
258
- p.caption:hover > a.headerlink,
259
- div.code-block-caption:hover > a.headerlink {
260
- visibility: visible;
261
- }
262
-
263
- div.body p.caption {
264
- text-align: inherit;
265
- }
266
-
267
- div.body td {
268
- text-align: left;
269
- }
270
-
271
- .first {
272
- margin-top: 0 !important;
273
- }
274
-
275
- p.rubric {
276
- margin-top: 30px;
277
- font-weight: bold;
278
- }
279
-
280
- img.align-left, figure.align-left, .figure.align-left, object.align-left {
281
- clear: left;
282
- float: left;
283
- margin-right: 1em;
284
- }
285
-
286
- img.align-right, figure.align-right, .figure.align-right, object.align-right {
287
- clear: right;
288
- float: right;
289
- margin-left: 1em;
290
- }
291
-
292
- img.align-center, figure.align-center, .figure.align-center, object.align-center {
293
- display: block;
294
- margin-left: auto;
295
- margin-right: auto;
296
- }
297
-
298
- img.align-default, figure.align-default, .figure.align-default {
299
- display: block;
300
- margin-left: auto;
301
- margin-right: auto;
302
- }
303
-
304
- .align-left {
305
- text-align: left;
306
- }
307
-
308
- .align-center {
309
- text-align: center;
310
- }
311
-
312
- .align-default {
313
- text-align: center;
314
- }
315
-
316
- .align-right {
317
- text-align: right;
318
- }
319
-
320
- /* -- sidebars -------------------------------------------------------------- */
321
-
322
- div.sidebar,
323
- aside.sidebar {
324
- margin: 0 0 0.5em 1em;
325
- border: 1px solid #ddb;
326
- padding: 7px;
327
- background-color: #ffe;
328
- width: 40%;
329
- float: right;
330
- clear: right;
331
- overflow-x: auto;
332
- }
333
-
334
- p.sidebar-title {
335
- font-weight: bold;
336
- }
337
-
338
- div.admonition, div.topic, blockquote {
339
- clear: left;
340
- }
341
-
342
- /* -- topics ---------------------------------------------------------------- */
343
-
344
- div.topic {
345
- border: 1px solid #ccc;
346
- padding: 7px;
347
- margin: 10px 0 10px 0;
348
- }
349
-
350
- p.topic-title {
351
- font-size: 1.1em;
352
- font-weight: bold;
353
- margin-top: 10px;
354
- }
355
-
356
- /* -- admonitions ----------------------------------------------------------- */
357
-
358
- div.admonition {
359
- margin-top: 10px;
360
- margin-bottom: 10px;
361
- padding: 7px;
362
- }
363
-
364
- div.admonition dt {
365
- font-weight: bold;
366
- }
367
-
368
- p.admonition-title {
369
- margin: 0px 10px 5px 0px;
370
- font-weight: bold;
371
- }
372
-
373
- div.body p.centered {
374
- text-align: center;
375
- margin-top: 25px;
376
- }
377
-
378
- /* -- content of sidebars/topics/admonitions -------------------------------- */
379
-
380
- div.sidebar > :last-child,
381
- aside.sidebar > :last-child,
382
- div.topic > :last-child,
383
- div.admonition > :last-child {
384
- margin-bottom: 0;
385
- }
386
-
387
- div.sidebar::after,
388
- aside.sidebar::after,
389
- div.topic::after,
390
- div.admonition::after,
391
- blockquote::after {
392
- display: block;
393
- content: '';
394
- clear: both;
395
- }
396
-
397
- /* -- tables ---------------------------------------------------------------- */
398
-
399
- table.docutils {
400
- margin-top: 10px;
401
- margin-bottom: 10px;
402
- border: 0;
403
- border-collapse: collapse;
404
- }
405
-
406
- table.align-center {
407
- margin-left: auto;
408
- margin-right: auto;
409
- }
410
-
411
- table.align-default {
412
- margin-left: auto;
413
- margin-right: auto;
414
- }
415
-
416
- table caption span.caption-number {
417
- font-style: italic;
418
- }
419
-
420
- table caption span.caption-text {
421
- }
422
-
423
- table.docutils td, table.docutils th {
424
- padding: 1px 8px 1px 5px;
425
- border-top: 0;
426
- border-left: 0;
427
- border-right: 0;
428
- border-bottom: 1px solid #aaa;
429
- }
430
-
431
- th {
432
- text-align: left;
433
- padding-right: 5px;
434
- }
435
-
436
- table.citation {
437
- border-left: solid 1px gray;
438
- margin-left: 1px;
439
- }
440
-
441
- table.citation td {
442
- border-bottom: none;
443
- }
444
-
445
- th > :first-child,
446
- td > :first-child {
447
- margin-top: 0px;
448
- }
449
-
450
- th > :last-child,
451
- td > :last-child {
452
- margin-bottom: 0px;
453
- }
454
-
455
- /* -- figures --------------------------------------------------------------- */
456
-
457
- div.figure, figure {
458
- margin: 0.5em;
459
- padding: 0.5em;
460
- }
461
-
462
- div.figure p.caption, figcaption {
463
- padding: 0.3em;
464
- }
465
-
466
- div.figure p.caption span.caption-number,
467
- figcaption span.caption-number {
468
- font-style: italic;
469
- }
470
-
471
- div.figure p.caption span.caption-text,
472
- figcaption span.caption-text {
473
- }
474
-
475
- /* -- field list styles ----------------------------------------------------- */
476
-
477
- table.field-list td, table.field-list th {
478
- border: 0 !important;
479
- }
480
-
481
- .field-list ul {
482
- margin: 0;
483
- padding-left: 1em;
484
- }
485
-
486
- .field-list p {
487
- margin: 0;
488
- }
489
-
490
- .field-name {
491
- -moz-hyphens: manual;
492
- -ms-hyphens: manual;
493
- -webkit-hyphens: manual;
494
- hyphens: manual;
495
- }
496
-
497
- /* -- hlist styles ---------------------------------------------------------- */
498
-
499
- table.hlist {
500
- margin: 1em 0;
501
- }
502
-
503
- table.hlist td {
504
- vertical-align: top;
505
- }
506
-
507
- /* -- object description styles --------------------------------------------- */
508
-
509
- .sig {
510
- font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
511
- }
512
-
513
- .sig-name, code.descname {
514
- background-color: transparent;
515
- font-weight: bold;
516
- }
517
-
518
- .sig-name {
519
- font-size: 1.1em;
520
- }
521
-
522
- code.descname {
523
- font-size: 1.2em;
524
- }
525
-
526
- .sig-prename, code.descclassname {
527
- background-color: transparent;
528
- }
529
-
530
- .optional {
531
- font-size: 1.3em;
532
- }
533
-
534
- .sig-paren {
535
- font-size: larger;
536
- }
537
-
538
- .sig-param.n {
539
- font-style: italic;
540
- }
541
-
542
- /* C++ specific styling */
543
-
544
- .sig-inline.c-texpr,
545
- .sig-inline.cpp-texpr {
546
- font-family: unset;
547
- }
548
-
549
- .sig.c .k, .sig.c .kt,
550
- .sig.cpp .k, .sig.cpp .kt {
551
- color: #0033B3;
552
- }
553
-
554
- .sig.c .m,
555
- .sig.cpp .m {
556
- color: #1750EB;
557
- }
558
-
559
- .sig.c .s, .sig.c .sc,
560
- .sig.cpp .s, .sig.cpp .sc {
561
- color: #067D17;
562
- }
563
-
564
-
565
- /* -- other body styles ----------------------------------------------------- */
566
-
567
- ol.arabic {
568
- list-style: decimal;
569
- }
570
-
571
- ol.loweralpha {
572
- list-style: lower-alpha;
573
- }
574
-
575
- ol.upperalpha {
576
- list-style: upper-alpha;
577
- }
578
-
579
- ol.lowerroman {
580
- list-style: lower-roman;
581
- }
582
-
583
- ol.upperroman {
584
- list-style: upper-roman;
585
- }
586
-
587
- :not(li) > ol > li:first-child > :first-child,
588
- :not(li) > ul > li:first-child > :first-child {
589
- margin-top: 0px;
590
- }
591
-
592
- :not(li) > ol > li:last-child > :last-child,
593
- :not(li) > ul > li:last-child > :last-child {
594
- margin-bottom: 0px;
595
- }
596
-
597
- ol.simple ol p,
598
- ol.simple ul p,
599
- ul.simple ol p,
600
- ul.simple ul p {
601
- margin-top: 0;
602
- }
603
-
604
- ol.simple > li:not(:first-child) > p,
605
- ul.simple > li:not(:first-child) > p {
606
- margin-top: 0;
607
- }
608
-
609
- ol.simple p,
610
- ul.simple p {
611
- margin-bottom: 0;
612
- }
613
-
614
- /* Docutils 0.17 and older (footnotes & citations) */
615
- dl.footnote > dt,
616
- dl.citation > dt {
617
- float: left;
618
- margin-right: 0.5em;
619
- }
620
-
621
- dl.footnote > dd,
622
- dl.citation > dd {
623
- margin-bottom: 0em;
624
- }
625
-
626
- dl.footnote > dd:after,
627
- dl.citation > dd:after {
628
- content: "";
629
- clear: both;
630
- }
631
-
632
- /* Docutils 0.18+ (footnotes & citations) */
633
- aside.footnote > span,
634
- div.citation > span {
635
- float: left;
636
- }
637
- aside.footnote > span:last-of-type,
638
- div.citation > span:last-of-type {
639
- padding-right: 0.5em;
640
- }
641
- aside.footnote > p {
642
- margin-left: 2em;
643
- }
644
- div.citation > p {
645
- margin-left: 4em;
646
- }
647
- aside.footnote > p:last-of-type,
648
- div.citation > p:last-of-type {
649
- margin-bottom: 0em;
650
- }
651
- aside.footnote > p:last-of-type:after,
652
- div.citation > p:last-of-type:after {
653
- content: "";
654
- clear: both;
655
- }
656
-
657
- /* Footnotes & citations ends */
658
-
659
- dl.field-list {
660
- display: grid;
661
- grid-template-columns: fit-content(30%) auto;
662
- }
663
-
664
- dl.field-list > dt {
665
- font-weight: bold;
666
- word-break: break-word;
667
- padding-left: 0.5em;
668
- padding-right: 5px;
669
- }
670
-
671
- dl.field-list > dt:after {
672
- content: ":";
673
- }
674
-
675
- dl.field-list > dd {
676
- padding-left: 0.5em;
677
- margin-top: 0em;
678
- margin-left: 0em;
679
- margin-bottom: 0em;
680
- }
681
-
682
- dl {
683
- margin-bottom: 15px;
684
- }
685
-
686
- dd > :first-child {
687
- margin-top: 0px;
688
- }
689
-
690
- dd ul, dd table {
691
- margin-bottom: 10px;
692
- }
693
-
694
- dd {
695
- margin-top: 3px;
696
- margin-bottom: 10px;
697
- margin-left: 30px;
698
- }
699
-
700
- dl > dd:last-child,
701
- dl > dd:last-child > :last-child {
702
- margin-bottom: 0;
703
- }
704
-
705
- dt:target, span.highlighted {
706
- background-color: #fbe54e;
707
- }
708
-
709
- rect.highlighted {
710
- fill: #fbe54e;
711
- }
712
-
713
- dl.glossary dt {
714
- font-weight: bold;
715
- font-size: 1.1em;
716
- }
717
-
718
- .versionmodified {
719
- font-style: italic;
720
- }
721
-
722
- .system-message {
723
- background-color: #fda;
724
- padding: 5px;
725
- border: 3px solid red;
726
- }
727
-
728
- .footnote:target {
729
- background-color: #ffa;
730
- }
731
-
732
- .line-block {
733
- display: block;
734
- margin-top: 1em;
735
- margin-bottom: 1em;
736
- }
737
-
738
- .line-block .line-block {
739
- margin-top: 0;
740
- margin-bottom: 0;
741
- margin-left: 1.5em;
742
- }
743
-
744
- .guilabel, .menuselection {
745
- font-family: sans-serif;
746
- }
747
-
748
- .accelerator {
749
- text-decoration: underline;
750
- }
751
-
752
- .classifier {
753
- font-style: oblique;
754
- }
755
-
756
- .classifier:before {
757
- font-style: normal;
758
- margin: 0 0.5em;
759
- content: ":";
760
- display: inline-block;
761
- }
762
-
763
- abbr, acronym {
764
- border-bottom: dotted 1px;
765
- cursor: help;
766
- }
767
-
768
- /* -- code displays --------------------------------------------------------- */
769
-
770
- pre {
771
- overflow: auto;
772
- overflow-y: hidden; /* fixes display issues on Chrome browsers */
773
- }
774
-
775
- pre, div[class*="highlight-"] {
776
- clear: both;
777
- }
778
-
779
- span.pre {
780
- -moz-hyphens: none;
781
- -ms-hyphens: none;
782
- -webkit-hyphens: none;
783
- hyphens: none;
784
- white-space: nowrap;
785
- }
786
-
787
- div[class*="highlight-"] {
788
- margin: 1em 0;
789
- }
790
-
791
- td.linenos pre {
792
- border: 0;
793
- background-color: transparent;
794
- color: #aaa;
795
- }
796
-
797
- table.highlighttable {
798
- display: block;
799
- }
800
-
801
- table.highlighttable tbody {
802
- display: block;
803
- }
804
-
805
- table.highlighttable tr {
806
- display: flex;
807
- }
808
-
809
- table.highlighttable td {
810
- margin: 0;
811
- padding: 0;
812
- }
813
-
814
- table.highlighttable td.linenos {
815
- padding-right: 0.5em;
816
- }
817
-
818
- table.highlighttable td.code {
819
- flex: 1;
820
- overflow: hidden;
821
- }
822
-
823
- .highlight .hll {
824
- display: block;
825
- }
826
-
827
- div.highlight pre,
828
- table.highlighttable pre {
829
- margin: 0;
830
- }
831
-
832
- div.code-block-caption + div {
833
- margin-top: 0;
834
- }
835
-
836
- div.code-block-caption {
837
- margin-top: 1em;
838
- padding: 2px 5px;
839
- font-size: small;
840
- }
841
-
842
- div.code-block-caption code {
843
- background-color: transparent;
844
- }
845
-
846
- table.highlighttable td.linenos,
847
- span.linenos,
848
- div.highlight span.gp { /* gp: Generic.Prompt */
849
- user-select: none;
850
- -webkit-user-select: text; /* Safari fallback only */
851
- -webkit-user-select: none; /* Chrome/Safari */
852
- -moz-user-select: none; /* Firefox */
853
- -ms-user-select: none; /* IE10+ */
854
- }
855
-
856
- div.code-block-caption span.caption-number {
857
- padding: 0.1em 0.3em;
858
- font-style: italic;
859
- }
860
-
861
- div.code-block-caption span.caption-text {
862
- }
863
-
864
- div.literal-block-wrapper {
865
- margin: 1em 0;
866
- }
867
-
868
- code.xref, a code {
869
- background-color: transparent;
870
- font-weight: bold;
871
- }
872
-
873
- h1 code, h2 code, h3 code, h4 code, h5 code, h6 code {
874
- background-color: transparent;
875
- }
876
-
877
- .viewcode-link {
878
- float: right;
879
- }
880
-
881
- .viewcode-back {
882
- float: right;
883
- font-family: sans-serif;
884
- }
885
-
886
- div.viewcode-block:target {
887
- margin: -1px -10px;
888
- padding: 0 10px;
889
- }
890
-
891
- /* -- math display ---------------------------------------------------------- */
892
-
893
- img.math {
894
- vertical-align: middle;
895
- }
896
-
897
- div.body div.math p {
898
- text-align: center;
899
- }
900
-
901
- span.eqno {
902
- float: right;
903
- }
904
-
905
- span.eqno a.headerlink {
906
- position: absolute;
907
- z-index: 1;
908
- }
909
-
910
- div.math:hover a.headerlink {
911
- visibility: visible;
912
- }
913
-
914
- /* -- printout stylesheet --------------------------------------------------- */
915
-
916
- @media print {
917
- div.document,
918
- div.documentwrapper,
919
- div.bodywrapper {
920
- margin: 0 !important;
921
- width: 100%;
922
- }
923
-
924
- div.sphinxsidebar,
925
- div.related,
926
- div.footer,
927
- #top-link {
928
- display: none;
929
- }
930
- }