Edgewall Software

Changes between Version 111 and Version 112 of GenshiTutorial


Ignore:
Timestamp:
Apr 30, 2008, 8:19:23 PM (16 years ago)
Author:
ken.stricklett@…
Comment:

minor editorial corrections

Legend:

Unmodified
Added
Removed
Modified
  • GenshiTutorial

    v111 v112  
    192192=== The Data Model ===
    193193
    194 To continue, we'll need to first add some Python classes to define the data model the application will use. As mentioned above, we're using a simple pickle file for persistence, so all we need to do here is create a couple of very simply Python classes.
     194To continue, we'll need to first add some Python classes to define the data model the application will use. As mentioned above, we're using a simple pickle file for persistence, so all we need to do here is create a couple of very simple Python classes.
    195195
    196196[[Image(model.png)]]
     
    240240}}}
    241241
    242 And in the `main()` function, let's replace the placeholder `data = {}` code with some code to read our data from the pickle file, and write it back:
     242And in the `main()` function, let's replace the placeholder `data = {}` with some code to read our data from the pickle file, and write it back:
    243243
    244244{{{