1. 10 Apr, 2015 5 commits
  2. 09 Apr, 2015 2 commits
  3. 08 Apr, 2015 2 commits
  4. 07 Apr, 2015 4 commits
  5. 21 Jan, 2015 2 commits
  6. 14 Jan, 2015 1 commit
  7. 12 Jan, 2015 4 commits
  8. 11 Jan, 2015 6 commits
  9. 07 Jan, 2015 1 commit
  10. 27 Dec, 2014 1 commit
    • Tres Seaver's avatar
      Fix registration of custom logging level names. · f8035686
      Tres Seaver authored
      We have been registering our custom level names ("BLATHER", "TRACE) in the
      wrong order since 2004.  Before Python 3.4, the stdlib ``logging`` module
      masked the error by registering them in *both* directions.
      f8035686
  11. 26 Dec, 2014 3 commits
  12. 22 Dec, 2014 2 commits
  13. 18 Dec, 2014 1 commit
  14. 06 Nov, 2014 1 commit
  15. 24 Jul, 2014 2 commits
  16. 13 Jul, 2014 2 commits
  17. 10 Jul, 2014 1 commit
    • Kirill Smelkov's avatar
      scripts/netspace: Fix so it runs · c6ebb373
      Kirill Smelkov authored
      Currently that script does not run because of import error:
      
          $ python src/ZODB/scripts/netspace.py
          Traceback (most recent call last):
            File "src/ZODB/scripts/netspace.py", line 13, in <module>
              from ZODB.referencesf import referencesf
          ImportError: No module named referencesf
      
      and that ZODB.referencesf module was moved to ZODB.serialize long ago in
      
          ec014812    (Move referencesf to ZODB.serialize.)
          ae7e113e    (Ack!  Deleted the wrong file in the last checkin.)
          355ff4ac    (One more try.  Commit the version with referencesf.)
      
      only the conversion missed the netspace.py script.
      
      Fix it.
      c6ebb373