You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python-311/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ Files with thirteen lines are too scary!
177
177
count.py □□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□ (32)
178
178
```
179
179
180
-
See [Asynchronous Task Groups in Python 3.11](https://realpython.com/python311-exception-groups/#asynchronous-task-groups-in-python-311) and [GH-31270](https://github.com/python/cpython/pull/31270).
180
+
See [Asynchronous Task Groups in Python 3.11](https://realpython.com/python311-exception-groups/#asynchronous-task-groups-in-python-311) and [gh-31270](https://github.com/python/cpython/pull/31270).
181
181
182
182
For a different example, have a look at [`download_peps_gather.py`](download_peps_gather.py) and [`download_peps_taskgroup.py](download_peps_taskgroup.py). For example:
183
183
@@ -331,7 +331,7 @@ ExceptionTable:
331
331
70 to 70 -> 72 [1] lasti
332
332
```
333
333
334
-
See [Zero-Cost Exceptions](https://realpython.com/python311-new-features/#zero-cost-exceptions) and [GH 84403](https://github.com/python/cpython/issues/84403).
334
+
See [Zero-Cost Exceptions](https://realpython.com/python311-new-features/#zero-cost-exceptions) and [gh-84403](https://github.com/python/cpython/issues/84403).
335
335
336
336
### Exception Annotations
337
337
@@ -378,7 +378,7 @@ Handling gh-90486
378
378
379
379
Note that this is typically not necessary in regular code. You can use the `except ValueError as err` syntax instead.
380
380
381
-
See [Reference the Active Exception With `sys.exception()`](https://realpython.com/python311-exception-groups/#reference-the-active-exception-with-sysexception) and [GH 90486](https://github.com/python/cpython/issues/90486).
381
+
See [Reference the Active Exception With `sys.exception()`](https://realpython.com/python311-exception-groups/#reference-the-active-exception-with-sysexception) and [gh-90486](https://github.com/python/cpython/issues/90486).
See [Reference the Active Traceback Consistently](https://realpython.com/python311-exception-groups/#reference-the-active-traceback-consistently) and [GH 89874](https://github.com/python/cpython/issues/89874).
393
+
See [Reference the Active Traceback Consistently](https://realpython.com/python311-exception-groups/#reference-the-active-traceback-consistently) and [gh-89874](https://github.com/python/cpython/issues/89874).
394
394
395
395
### New Math Functions: `cbrt()` and `exp2()`
396
396
@@ -412,7 +412,7 @@ math.exp2(16) = 65536.0
412
412
math.pow(2, 16) = 65536.0
413
413
```
414
414
415
-
See [Cube Roots and Powers of Two](https://realpython.com/python311-error-messages/#cube-roots-and-powers-of-two), [GH 88523](https://github.com/python/cpython/issues/88523) and [GH 90075](https://github.com/python/cpython/issues/90075).
415
+
See [Cube Roots and Powers of Two](https://realpython.com/python311-error-messages/#cube-roots-and-powers-of-two), [gh-88523](https://github.com/python/cpython/issues/88523) and [gh-90075](https://github.com/python/cpython/issues/90075).
416
416
417
417
### Underscores in Fractions
418
418
@@ -423,7 +423,7 @@ You can use underscores when defining fractions from strings:
423
423
Fraction('6_024/1_729') = 6024/1729
424
424
```
425
425
426
-
See [Underscores in Fractions](https://realpython.com/python311-error-messages/#underscores-in-fractions) and [GH 88424](https://github.com/python/cpython/issues/88424).
426
+
See [Underscores in Fractions](https://realpython.com/python311-error-messages/#underscores-in-fractions) and [gh-88424](https://github.com/python/cpython/issues/88424).
427
427
428
428
### Flexible Calling of Objects: `operator.call()`
429
429
@@ -437,7 +437,7 @@ The Norwegian calculator implemented in [`kalkulator.py`](kalkulator.py) uses `o
437
437
11 delt på 3 = 3.6666666666666665
438
438
```
439
439
440
-
See [Flexible Calling of Objects](https://realpython.com/python311-error-messages/#flexible-calling-of-objects) and [GH 88185](https://github.com/python/cpython/issues/88185).
440
+
See [Flexible Calling of Objects](https://realpython.com/python311-error-messages/#flexible-calling-of-objects) and [gh-88185](https://github.com/python/cpython/issues/88185).
0 commit comments