Skip to main content

2 posts tagged with "Python"

View All Tags

Free Threaded Mode in Python3.13 (GIL disabled)

· 4 min read
Hieu Nguyen
AI Engineer

Python 3.13 just release recently, with an amazing new feature called "Free threaded mode". This is a great improvement for the performance of your code when you are using threads. This article shows how to enable this feature (not enabled by default) and shows "free threaded mode" impact on the performance of your code.

Python Decorator

· 11 min read
Hieu Nguyen
AI Engineer

Python decorator là gì? decorator có nghĩa nôm na là "đồ đem đi trang trí". Quả thực vậy, decorator trong Python sinh ra là để đem đi trang trí - phụ họa thêm chức năng cho đối tượng (function, class) mà không can thiệp sửa đổi đối tượng đó.