Smalltalk with James Robertson: category: py4u Podcast
1) PY4U 63: Exception Handling continued
I'l starting to upload episodes of Python 4 You that James recorded and had queued up ready to publish. This episode continues the discussion on exception handling in Python. Enj...Show More
AUDIO REMOVED: The podcast creator has removed the audio for this episode.2) PU 4U 63: Exception Handling Continued
In Python, you can take the instance of a raised exception as an argument to your handler; today we'll have a look at that.
3) PY 4U 61: Else Clauses in Exception Handlers
Python lets you add a single else clause to a handler - and it'll get executed only if the execption(s) being handled don't happen
4) PY 4U 60: Exceptions
Today we'll have a look at exceptions in Python, and how to handle them
5) PY 4U 59: Importing and Using a Module
Today we'll import the CounterApp into another Python file and use it
6) PY 4U 58: A Simple Class Example
Today we will go over a simple class in Python, as a prelude to adding test cases
7) PY 4U 57: Debugging in Idle
Today we'll take an overview look at the built in debugger in Idle
8) PY 4U 56: Getters and Setters
Today we'll have a look at gettr() and setattr() in Python
9) PY 4U 55: Adding Class Members
In python, we don't need to declare attributes of a class inside the definition; they can be dynamically added anytime. Today we'll set up a simple "data structure" type of object as an example
10) PY 4U 54: Name Mangling
Today we'll have a look at how name mangling is used in Python to help support private (by convention, not actually private) members in classes