Explore >> Select a destination


You are here

rixx.de
| | blog.nuculabs.de
19.9 parsecs away

Travel
| | Hello, In this short article I would like to talk about context managers. I personally consider that at the core they are just a form of decorators. If you don't know what a decorator is check the Decorator Pattern Wikipedia article. Decorators can be used to implement cross-cutting concerns. We have componentA and we need logging and security, we could write the logic for logging and security handling in componentA but some people consider component a should be componentA not componentAthatAlsoKnowsAboutSecurityAndOtherStuff. Since it's not the component's responsibility to authorize requests or log calls to a external logging service, we can wrap the componentA into a decorator that does just that.
| | bluebones.net
13.2 parsecs away

Travel
| | [AI summary] A programming tutorial explains how to create a Python decorator that preserves function return types while conditionally altering the output.
| | sobolevn.me
20.6 parsecs away

Travel
| | Before ParamSpec (PEP612) was released in Python3.10 and typing_extensions,there was a big problem in typing decorators that change a function's signature.
| | initialcommit.com
44.6 parsecs away

Travel
| In this article, you will learn about python runtime errors, some common examples and how to fix them