Skip to content

Commit 415b10e

Browse files
committed
[IMPROVE][WIP]
1 parent 1dd902e commit 415b10e

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

_posts/2018-08-12-walkthrough-with-features-introduced-in-core-python-3-7.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ title: "Walkthrough with features introduced in Core Python 3.7"
44
date: "2018-08-12 15:51:15 +0530"
55
tag:
66
- Python
7-
- Core_python
7+
- CorePython
88
- Python3.7
99
---
1010

1111

12-
In this post, I will try to discuss improvements done in Core Python version
12+
In this post, I will try to explain improvements done in Core Python version
1313
3.7. Below is the summary of features convered in this post.
1414

1515
* Breakpoints
1616

17-
* subprocess
17+
* Subprocess
1818

19-
* dataclass
19+
* Dataclass
2020

21-
* int with under_scores
21+
* Int with underscores
2222

23-
* __dir__ and __attr__ at module level. Inside __init__.py file
23+
* Namedtuples
2424

25-
* namedtuples
25+
* Hashbased Python object file
2626

2727

2828
* Breakpoint:
@@ -110,8 +110,6 @@ In this post, I will try to discuss improvements done in Core Python version
110110

111111
>>> print(ls.stderr.decode())
112112

113-
```
114-
115113

116114
* Dataclasses module:
117115

@@ -200,7 +198,6 @@ In this post, I will try to discuss improvements done in Core Python version
200198
x.
201199

202200

203-
204201
* .pyc files are now diffed with hash approach:
205202

206203
.pyc are object files generated everytime you change your Python code file

0 commit comments

Comments
 (0)