Let take a look of Python Logging Errors, Garbage Collection, and Database API.
• Logging Errors
- Error stream of the process can be redirected to any file. The stream includes error message and traceback .
- Use sys.excepthook to write your own function to handle unhandled exceptions
Garbage Collection
• Cpython – uses reference count
• Jython – relies on the platform (JVM)
Database API
• Databases supported by Python
- Oracle
- SQL Server
- DB2
- MySQL
- PostgreSQL