Skip to content

Commit 1cebfe1

Browse files
committed
Update blog post description and changelog for Python decorators article
1 parent 901f545 commit 1cebfe1

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/blog/python-decorators-for-beginners.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Python Decorators - Simple Patterns to Level Up Your Code - Python Cheatsheet'
3-
description: Decorators are one of Python's most elegant features, allowing you to modify the behavior of functions or methods in a clean and readable way.
3+
description: If you can write a function, you can write a decorator. Learn to add features like timers and loggers to your code with these easy, beginner-friendly patterns.
44
date: Aug 16, 2025
55
updated: Aug 16, 2025
66
tags: python, intermediate, decorators
@@ -11,7 +11,7 @@ socialImage: /blog/python-decorators.jpg
1111
meta:
1212
layout: article
1313
title: 'Python Decorators - Simple Patterns to Level Up Your Code'
14-
description: Decorators are one of Python's most elegant features, allowing you to modify the behavior of functions or methods in a clean and readable way.
14+
description: If you can write a function, you can write a decorator. Learn to add features like timers and loggers to your code with these easy, beginner-friendly patterns.
1515
date: Aug 16, 2025
1616
updated: Aug 16, 2025
1717
socialImage: /blog/python-decorators.jpg

src/pages/changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22
title: 'Changelog - Python Cheatsheet'
33
description: See what is new, what got fixed, and what is coming.
44
date: July 19, 2022
5-
updated: August 2, 2025
5+
updated: August 16, 2025
66
---
77

88
<base-title :title="frontmatter.title" :description="frontmatter.description">
99
Changelog
1010
</base-title>
1111

12+
## 2025-08-16
13+
14+
- Added new blog post <router-link to="/blog/python-decorators-for-beginners">Python Decorators: Simple Patterns to Level Up Your Code</router-link>
15+
- Cross-referenced the decorators cheatsheet with the new blog post for practical examples and inline guidance.
16+
1217
## 2025-08-03
1318

1419
- Added new blog post <router-link to="/blog/python-pathlib-essentials">10 Essential File System Operations Every Developer Should Know</router-link>

0 commit comments

Comments
 (0)