mode.utils.collections
Custom data structures.
AttributeDict
Bases: dict, AttributeDictMixin
Dict subclass with attribute access.
Source code in mode/utils/collections.py
825 826 | |
AttributeDictMixin
Mixin for Mapping interface that adds attribute access.
Example:
d.key -> d[key]
Source code in mode/utils/collections.py
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | |
__getattr__(k)
d.key -> d[key].
Source code in mode/utils/collections.py
807 808 809 810 811 812 813 814 | |
__setattr__(key, value)
d[key] = value -> d.key = value
Source code in mode/utils/collections.py
816 817 818 819 820 821 822 | |
DictAttribute
Bases: MutableMapping[str, VT], MappingViewProxy
Dict interface to attributes.
obj[k]->obj.kobj[k] = val->obj.k = val
Source code in mode/utils/collections.py
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 | |
FastUserDict
Bases: MutableMapping[KT, VT]
Proxy to dict.
Like collection.UserDict but reimplements some methods
for better performance when the underlying dictionary is a real dict.
Source code in mode/utils/collections.py
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 | |
FastUserList
Bases: UserList
Proxy to list.
Source code in mode/utils/collections.py
403 404 | |
FastUserSet
Bases: MutableSet[T]
Proxy to set.
Source code in mode/utils/collections.py
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 | |
Heap
Bases: MutableSequence[_ComparableT]
Generic interface to heapq.
Elements have to be orderable: heapq maintains the heap invariant by
comparing them, so the element type is bound to
_typeshed.SupportsRichComparison -- anything defining __lt__ or
__gt__. Heap[int] and Heap[str] are fine, while an element type
with no ordering is rejected by the type checker instead of failing at
the first push.
Source code in mode/utils/collections.py
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 | |
nlargest(n, key=None)
Find the n largest elements in the dataset.
Source code in mode/utils/collections.py
151 152 153 154 155 156 157 158 | |
nsmallest(n, key=None)
Find the n smallest elements in the dataset.
Source code in mode/utils/collections.py
160 161 162 163 164 165 166 167 | |
pop(index=0)
Pop the smallest item off the heap.
Maintains the heap invariant.
Source code in mode/utils/collections.py
110 111 112 113 114 115 116 117 118 119 120 | |
push(item)
Push item onto heap, maintaining the heap invariant.
Source code in mode/utils/collections.py
122 123 124 | |
pushpop(item)
Push item on the heap, then pop and return from the heap.
The combined action runs more efficiently than
push followed by a separate call to pop.
Source code in mode/utils/collections.py
126 127 128 129 130 131 132 | |
replace(item)
Pop and return the current smallest value, and add the new item.
This is more efficient than :methpop followed by push,
and can be more appropriate when using a fixed-size heap.
Note that the value returned may be larger than item! That constrains reasonable uses of this routine unless written as part of a conditional replacement:
if item > heap[0]:
item = heap.replace(item)
Source code in mode/utils/collections.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
LRUCache
Bases: FastUserDict[KT, VT], MutableMapping[KT, VT], MappingViewProxy
LRU Cache implementation using a doubly linked list to track access.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
int
|
The maximum number of keys to keep in the cache. When a new key is inserted and the limit has been exceeded, the Least Recently Used key will be discarded from the cache. |
None
|
thread_safety
|
bool
|
Enable if multiple OS threads are going
to access/mutate the cache. Defaults to :const: |
None
|
Note
The backing store is an :class:~collections.OrderedDict rather
than a plain :class:dict: evicting the oldest entry is this
class's hot path, and popitem(last=False) does it in O(1) via
the linked list, where the dict equivalent degrades badly as
the cache grows (measured in docs/free-threading.md). The
cost of that linked list is that OrderedDict is not safe to
mutate concurrently on free-threaded builds -- racing threads can
corrupt it badly enough to segfault the interpreter -- so on
those builds the mutex is mandatory rather than merely on by
default.
Source code in mode/utils/collections.py
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 | |
ManagedUserDict
Bases: FastUserDict[KT, VT]
A UserDict that adds callbacks for when keys are get/set/deleted.
Source code in mode/utils/collections.py
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 | |
on_clear()
Handle that the mapping is being cleared.
Source code in mode/utils/collections.py
767 768 769 | |
on_key_del(key)
Handle that a key is deleted.
Source code in mode/utils/collections.py
763 764 765 | |
on_key_get(key)
Handle that key is being retrieved.
Source code in mode/utils/collections.py
755 756 757 | |
on_key_set(key, value)
Handle that value for a key is being set.
Source code in mode/utils/collections.py
759 760 761 | |
ManagedUserSet
Bases: FastUserSet[T]
A MutableSet that adds callbacks for when keys are get/set/deleted.
Source code in mode/utils/collections.py
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 | |
force_mapping(m)
Wrap object into supporting the mapping interface if necessary.
Source code in mode/utils/collections.py
897 898 899 900 901 | |