Skip to content

Commit 0eff475

Browse files
committed
add strong emphasis in new py3
1 parent 970ec70 commit 0eff475

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

docs/notes/python-new-py3.rst

+20-20
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ New in Python3 cheatsheet
1010
``print`` is a function
1111
-------------------------
1212

13-
New in Python 3.0
13+
**New in Python 3.0**
1414

1515
- PEP 3105_ - Make print a function
1616

@@ -43,7 +43,7 @@ Python 3
4343
String is unicode
4444
-------------------
4545

46-
New in Python 3.0
46+
**New in Python 3.0**
4747

4848
- PEP 3138_ - String representation in Python 3000
4949
- PEP 3120_ - Using UTF-8 as the default source encoding
@@ -85,7 +85,7 @@ Python 3
8585
New Super
8686
----------
8787

88-
New in Python 3.0
88+
**New in Python 3.0**
8989

9090
- PEP 3135_ - New Super
9191

@@ -135,7 +135,7 @@ Python 3
135135
Remove ``<>``
136136
--------------
137137

138-
New in Python 3.0
138+
**New in Python 3.0**
139139

140140
Python 2
141141

@@ -159,7 +159,7 @@ Python 3
159159
Not allow ``from module import *`` inside function
160160
---------------------------------------------------
161161

162-
New in Python 3.0
162+
**New in Python 3.0**
163163

164164
.. code-block:: python
165165
@@ -173,7 +173,7 @@ New in Python 3.0
173173
Add ``nonlocal`` keyword
174174
-------------------------
175175

176-
New in Python 3.0
176+
**New in Python 3.0**
177177

178178
PEP 3104_ - Access to Names in Outer Scopes
179179

@@ -200,7 +200,7 @@ PEP 3104_ - Access to Names in Outer Scopes
200200
Extended iterable unpacking
201201
----------------------------
202202

203-
New in Python 3.0
203+
**New in Python 3.0**
204204

205205
- PEP 3132_ - Extended Iterable Unpacking
206206

@@ -218,7 +218,7 @@ New in Python 3.0
218218
General unpacking
219219
------------------
220220

221-
New in Python 3.5
221+
**New in Python 3.5**
222222

223223
- PEP 448_ - Additional Unpacking Generalizations
224224

@@ -256,7 +256,7 @@ Python 3
256256
Function annotations
257257
--------------------
258258

259-
New in Python 3.0
259+
**New in Python 3.0**
260260

261261
- PEP 3107_ - Function Annotations
262262

@@ -277,7 +277,7 @@ New in Python 3.0
277277
Variable annotations
278278
--------------------
279279

280-
New in Python 3.6
280+
**New in Python 3.6**
281281

282282
- PEP 526_ - Syntax for Variable Annotations
283283

@@ -303,7 +303,7 @@ New in Python 3.6
303303
Core support for typing module and generic types
304304
-------------------------------------------------
305305

306-
New in Python 3.7
306+
**New in Python 3.7**
307307

308308
- PEP 560_ - Core support for typing module and generic types
309309

@@ -347,7 +347,7 @@ Python 3.7 or above
347347
Format byte string
348348
-------------------
349349

350-
New in Python 3.5
350+
**New in Python 3.5**
351351

352352
- PEP 461_ - Adding ``%`` formatting to bytes and bytearray
353353

@@ -371,7 +371,7 @@ New in Python 3.5
371371
fstring
372372
--------
373373

374-
New in Python 3.6
374+
**New in Python 3.6**
375375

376376
- PEP 498_ - Literal String Interpolation
377377

@@ -394,7 +394,7 @@ New in Python 3.6
394394
Generator delegation
395395
----------------------
396396

397-
New in Python 3.3
397+
**New in Python 3.3**
398398

399399
- PEP 380_ - Syntax for Delegating to a Subgenerator
400400

@@ -416,7 +416,7 @@ New in Python 3.3
416416
``async`` and ``await`` syntax
417417
-------------------------------
418418

419-
New in Python 3.5
419+
**New in Python 3.5**
420420

421421
- PEP 492_ - Coroutines with async and await syntax
422422

@@ -472,7 +472,7 @@ Python 3.5 or above
472472
Asynchronous generators
473473
------------------------
474474

475-
New in Python 3.6
475+
**New in Python 3.6**
476476

477477
- PEP 525_ - Asynchronous Generators
478478

@@ -502,7 +502,7 @@ New in Python 3.6
502502
Asynchronous comprehensions
503503
----------------------------
504504

505-
New in Python 3.6
505+
**New in Python 3.6**
506506

507507
- PEP 530_ - Asynchronous Comprehensions
508508

@@ -553,7 +553,7 @@ New in Python 3.6
553553
Matrix multiplication
554554
----------------------
555555

556-
New in Python 3.5
556+
**New in Python 3.5**
557557

558558
- PEP 465_ - A dedicated infix operator for matrix multiplication
559559

@@ -596,7 +596,7 @@ New in Python 3.5
596596
Data Classes
597597
-------------
598598

599-
New in Python 3.7
599+
**New in Python 3.7**
600600

601601
PEP 557_ - Data Classes
602602

@@ -642,7 +642,7 @@ PEP 557_ - Data Classes
642642
Built-in ``breakpoint()``
643643
--------------------------
644644

645-
New in Python 3.7
645+
**New in Python 3.7**
646646

647647
- PEP 553_ - Built-in breakpoint()
648648

0 commit comments

Comments
 (0)