diff --git a/advanced-iterators.html b/advanced-iterators.html index c6f9aad..924e6e9 100755 --- a/advanced-iterators.html +++ b/advanced-iterators.html @@ -633,11 +633,10 @@ NameError: name '__import__' is not defined
  • Alphametics Index, including lots of puzzles and a generator to make your own -

    Many, many thanks to Raymond Hettinger for agreeing to relicense his code so I could port it to Python 3 and use it as the basis for this chapter. +

    Many thanks to Raymond Hettinger for agreeing to relicense his code so I could port it to Python 3 and use it as the basis for this chapter.

    -

    © 2001–9 Mark Pilgrim diff --git a/diveintopython3.org b/diveintopython3.org index 3332e63..1d67abb 100755 --- a/diveintopython3.org +++ b/diveintopython3.org @@ -2,7 +2,7 @@ * Your First Python Program ** TODO mention why from module import * is only allowed at module level * Native Datatypes -* TODO Comprehensions +* DONE Comprehensions ** List comprehensions ** Set comprehensions ** Dictionary comprehensions @@ -45,7 +45,7 @@ * TODO 2nd draft Porting Code to Python 3 with 2to3 * TODO 2nd draft Special Method Names * Bits to add somewhere -** TODO section on tuples +** DONE section on tuples ** TODO section on dictionary views several dictionary methods return them they're dynamic diff --git a/index.html b/index.html index 1cbc6bc..77f4bf5 100644 --- a/index.html +++ b/index.html @@ -39,7 +39,7 @@ h1:before{content:''}

  • Refactoring
  • Files
  • XML -
  • Serializing Python Objects +
  • Serializing Python Objects
  • HTTP Web Services
  • Threading & Multiprocessing
  • Packaging Python libraries diff --git a/refactoring.html b/refactoring.html index 92a2339..ba6fe2d 100755 --- a/refactoring.html +++ b/refactoring.html @@ -471,7 +471,7 @@ OK
  • Refactoring mercilessly to improve performance, scalability, readability, maintainability, or whatever other -ility you’re lacking -

    +

    © 2001–9 Mark Pilgrim diff --git a/serializing.html b/serializing.html new file mode 100644 index 0000000..7362556 --- /dev/null +++ b/serializing.html @@ -0,0 +1,37 @@ + + + +Serializing Python Objects - Dive into Python 3 + + + + + + + +

      
    +

    You are here: Home Dive Into Python 3 +

    Difficulty level: ♦♦♦♦♢ +

    Serializing Python Objects

    +
    +

    FIXME
    — FIXME +

    +

      +

    Diving In

    +

    FIXME + +

    ⁂ + +

    Further Reading

    + + + +

    +

    © 2001–9 Mark Pilgrim + + + diff --git a/table-of-contents.html b/table-of-contents.html index 4cfa929..b80e793 100755 --- a/table-of-contents.html +++ b/table-of-contents.html @@ -247,7 +247,10 @@ ul li ol{margin:0;padding:0 0 0 2.5em}

  • Generating XML
  • Further Reading -
  • Serializing Python Objects +
  • Serializing Python Objects +
      +
    1. ...diving in... +
  • HTTP Web Services
    1. Diving In diff --git a/unit-testing.html b/unit-testing.html index 3386dac..c836dee 100755 --- a/unit-testing.html +++ b/unit-testing.html @@ -790,7 +790,7 @@ OK

      And the anticlimax award of the year goes to… the word “OK”, which is printed by the unittest module when all the tests pass. -

      +

      © 2001–9 Mark Pilgrim diff --git a/xml.html b/xml.html index c79c792..9b84d74 100755 --- a/xml.html +++ b/xml.html @@ -641,7 +641,7 @@ lxml.etree.XMLSyntaxError: Entity 'hellip' not defined, line 3, column 28

    2. xmlwitch is another XML generation library -

      +

      © 2001–9 Mark Pilgrim diff --git a/your-first-python-program.html b/your-first-python-program.html index 3a291bf..5ece0ec 100755 --- a/your-first-python-program.html +++ b/your-first-python-program.html @@ -349,7 +349,7 @@ if __name__ == '__main__':

    3. PEP 8: Style Guide for Python Code discusses good indentation style.
    4. Python Reference Manual explains what it means to say that everything in Python is an object, because some people are pedants and like to discuss that sort of thing at great length. -

      +

      © 2001–9 Mark Pilgrim