|
1 | 1 | # -*- coding: utf-8 -*-
|
2 |
| -# Autogenerated by Sphinx on Tue Feb 7 13:18:04 2023 |
| 2 | +# Autogenerated by Sphinx on Tue Mar 7 22:42:28 2023 |
3 | 3 | topics = {'assert': 'The "assert" statement\n'
|
4 | 4 | '**********************\n'
|
5 | 5 | '\n'
|
|
2499 | 2499 | 'alive\n'
|
2500 | 2500 | 'until the next garbage collection occurs.\n'
|
2501 | 2501 | '\n'
|
2502 |
| - 'Before an "except" clause’s suite is executed, details about ' |
2503 |
| - 'the\n' |
2504 |
| - 'exception are stored in the "sys" module and can be accessed ' |
2505 |
| - 'via\n' |
2506 |
| - '"sys.exc_info()". "sys.exc_info()" returns a 3-tuple consisting ' |
2507 |
| - 'of the\n' |
2508 |
| - 'exception class, the exception instance and a traceback object ' |
2509 |
| - '(see\n' |
2510 |
| - 'section The standard type hierarchy) identifying the point in ' |
2511 |
| - 'the\n' |
2512 |
| - 'program where the exception occurred. The details about the ' |
2513 |
| - 'exception\n' |
2514 |
| - 'accessed via "sys.exc_info()" are restored to their previous ' |
2515 |
| - 'values\n' |
2516 |
| - 'when leaving an exception handler:\n' |
| 2502 | + 'Before an "except" clause’s suite is executed, the exception is ' |
| 2503 | + 'stored\n' |
| 2504 | + 'in the "sys" module, where it can be accessed from within the ' |
| 2505 | + 'body of\n' |
| 2506 | + 'the "except" clause by calling "sys.exception()". When leaving ' |
| 2507 | + 'an\n' |
| 2508 | + 'exception handler, the exception stored in the "sys" module is ' |
| 2509 | + 'reset\n' |
| 2510 | + 'to its previous value:\n' |
2517 | 2511 | '\n'
|
2518 |
| - ' >>> print(sys.exc_info())\n' |
2519 |
| - ' (None, None, None)\n' |
| 2512 | + ' >>> print(sys.exception())\n' |
| 2513 | + ' None\n' |
2520 | 2514 | ' >>> try:\n'
|
2521 | 2515 | ' ... raise TypeError\n'
|
2522 | 2516 | ' ... except:\n'
|
2523 |
| - ' ... print(sys.exc_info())\n' |
| 2517 | + ' ... print(repr(sys.exception()))\n' |
2524 | 2518 | ' ... try:\n'
|
2525 | 2519 | ' ... raise ValueError\n'
|
2526 | 2520 | ' ... except:\n'
|
2527 |
| - ' ... print(sys.exc_info())\n' |
2528 |
| - ' ... print(sys.exc_info())\n' |
| 2521 | + ' ... print(repr(sys.exception()))\n' |
| 2522 | + ' ... print(repr(sys.exception()))\n' |
2529 | 2523 | ' ...\n'
|
2530 |
| - " (<class 'TypeError'>, TypeError(), <traceback object at " |
2531 |
| - '0x10efad080>)\n' |
2532 |
| - " (<class 'ValueError'>, ValueError(), <traceback object at " |
2533 |
| - '0x10efad040>)\n' |
2534 |
| - " (<class 'TypeError'>, TypeError(), <traceback object at " |
2535 |
| - '0x10efad080>)\n' |
2536 |
| - ' >>> print(sys.exc_info())\n' |
2537 |
| - ' (None, None, None)\n' |
| 2524 | + ' TypeError()\n' |
| 2525 | + ' ValueError()\n' |
| 2526 | + ' TypeError()\n' |
| 2527 | + ' >>> print(sys.exception())\n' |
| 2528 | + ' None\n' |
2538 | 2529 | '\n'
|
2539 | 2530 | '\n'
|
2540 | 2531 | '"except*" clause\n'
|
|
4533 | 4524 | 'objects and\n'
|
4534 | 4525 | ' implements an "__eq__()" method, it should not '
|
4535 | 4526 | 'implement\n'
|
4536 |
| - ' "__hash__()", since the implementation of hashable ' |
| 4527 | + ' "__hash__()", since the implementation of *hashable* ' |
4537 | 4528 | 'collections\n'
|
4538 | 4529 | ' requires that a key’s hash value is immutable (if the '
|
4539 | 4530 | 'object’s hash\n'
|
|
9453 | 9444 | ' hashable collections. If a class defines mutable objects '
|
9454 | 9445 | 'and\n'
|
9455 | 9446 | ' implements an "__eq__()" method, it should not implement\n'
|
9456 |
| - ' "__hash__()", since the implementation of hashable ' |
| 9447 | + ' "__hash__()", since the implementation of *hashable* ' |
9457 | 9448 | 'collections\n'
|
9458 | 9449 | ' requires that a key’s hash value is immutable (if the '
|
9459 | 9450 | 'object’s hash\n'
|
@@ -12644,37 +12635,31 @@
|
12644 | 12635 | 'cycle with the stack frame, keeping all locals in that frame alive\n'
|
12645 | 12636 | 'until the next garbage collection occurs.\n'
|
12646 | 12637 | '\n'
|
12647 |
| - 'Before an "except" clause’s suite is executed, details about the\n' |
12648 |
| - 'exception are stored in the "sys" module and can be accessed via\n' |
12649 |
| - '"sys.exc_info()". "sys.exc_info()" returns a 3-tuple consisting of ' |
12650 |
| - 'the\n' |
12651 |
| - 'exception class, the exception instance and a traceback object (see\n' |
12652 |
| - 'section The standard type hierarchy) identifying the point in the\n' |
12653 |
| - 'program where the exception occurred. The details about the ' |
12654 |
| - 'exception\n' |
12655 |
| - 'accessed via "sys.exc_info()" are restored to their previous values\n' |
12656 |
| - 'when leaving an exception handler:\n' |
| 12638 | + 'Before an "except" clause’s suite is executed, the exception is ' |
| 12639 | + 'stored\n' |
| 12640 | + 'in the "sys" module, where it can be accessed from within the body ' |
| 12641 | + 'of\n' |
| 12642 | + 'the "except" clause by calling "sys.exception()". When leaving an\n' |
| 12643 | + 'exception handler, the exception stored in the "sys" module is reset\n' |
| 12644 | + 'to its previous value:\n' |
12657 | 12645 | '\n'
|
12658 |
| - ' >>> print(sys.exc_info())\n' |
12659 |
| - ' (None, None, None)\n' |
| 12646 | + ' >>> print(sys.exception())\n' |
| 12647 | + ' None\n' |
12660 | 12648 | ' >>> try:\n'
|
12661 | 12649 | ' ... raise TypeError\n'
|
12662 | 12650 | ' ... except:\n'
|
12663 |
| - ' ... print(sys.exc_info())\n' |
| 12651 | + ' ... print(repr(sys.exception()))\n' |
12664 | 12652 | ' ... try:\n'
|
12665 | 12653 | ' ... raise ValueError\n'
|
12666 | 12654 | ' ... except:\n'
|
12667 |
| - ' ... print(sys.exc_info())\n' |
12668 |
| - ' ... print(sys.exc_info())\n' |
| 12655 | + ' ... print(repr(sys.exception()))\n' |
| 12656 | + ' ... print(repr(sys.exception()))\n' |
12669 | 12657 | ' ...\n'
|
12670 |
| - " (<class 'TypeError'>, TypeError(), <traceback object at " |
12671 |
| - '0x10efad080>)\n' |
12672 |
| - " (<class 'ValueError'>, ValueError(), <traceback object at " |
12673 |
| - '0x10efad040>)\n' |
12674 |
| - " (<class 'TypeError'>, TypeError(), <traceback object at " |
12675 |
| - '0x10efad080>)\n' |
12676 |
| - ' >>> print(sys.exc_info())\n' |
12677 |
| - ' (None, None, None)\n' |
| 12658 | + ' TypeError()\n' |
| 12659 | + ' ValueError()\n' |
| 12660 | + ' TypeError()\n' |
| 12661 | + ' >>> print(sys.exception())\n' |
| 12662 | + ' None\n' |
12678 | 12663 | '\n'
|
12679 | 12664 | '\n'
|
12680 | 12665 | '"except*" clause\n'
|
|
14408 | 14393 | ' New in version 3.10.\n'
|
14409 | 14394 | '\n'
|
14410 | 14395 | 'Keys views are set-like since their entries are unique and '
|
14411 |
| - 'hashable.\n' |
| 14396 | + '*hashable*.\n' |
14412 | 14397 | 'If all values are hashable, so that "(key, value)" pairs are '
|
14413 | 14398 | 'unique\n'
|
14414 | 14399 | 'and hashable, then the items view is also set-like. (Values '
|
|
0 commit comments