[Checkins] [zopefoundation/ZEO] d8bc34: Some work in progress on porting. It is going slow...

GitHub noreply at github.com
Tue May 14 21:34:53 UTC 2013


  Branch: refs/heads/master
  Home:   https://github.com/zopefoundation/ZEO
  Commit: d8bc34cc0049a10bd146e49e23810adc93f70a7a
      https://github.com/zopefoundation/ZEO/commit/d8bc34cc0049a10bd146e49e23810adc93f70a7a
  Author: Stephan Richter <stephan.richter at gmail.com>
  Date:   2013-03-01 (Fri, 01 Mar 2013)

  Changed paths:
    A .gitignore
    A MANIFEST.in
    A ZODB-4.0.0dev.tar.gz
    M bootstrap.py
    M buildout.cfg
    M setup.py
    M src/ZEO/ClientStorage.py
    M src/ZEO/StorageServer.py
    M src/ZEO/TransactionBuffer.py
    A src/ZEO/_compat.py
    M src/ZEO/auth/__init__.py
    M src/ZEO/auth/auth_digest.py
    M src/ZEO/auth/base.py
    M src/ZEO/auth/hmac.py
    M src/ZEO/cache.py
    M src/ZEO/monitor.py
    M src/ZEO/runzeo.py
    M src/ZEO/scripts/cache_simul.py
    M src/ZEO/scripts/cache_stats.py
    M src/ZEO/scripts/parsezeolog.py
    M src/ZEO/scripts/timeout.py
    M src/ZEO/scripts/zeopack.py
    M src/ZEO/scripts/zeoqueue.py
    M src/ZEO/scripts/zeoreplay.py
    M src/ZEO/scripts/zeoserverlog.py
    M src/ZEO/scripts/zeoup.py
    M src/ZEO/tests/CommitLockTests.py
    M src/ZEO/tests/ConnectionTests.py
    M src/ZEO/tests/InvalidationTests.py
    M src/ZEO/tests/IterationTests.py
    M src/ZEO/tests/TestThread.py
    M src/ZEO/tests/forker.py
    M src/ZEO/tests/servertesting.py
    M src/ZEO/tests/speed.py
    M src/ZEO/tests/stress.py
    M src/ZEO/tests/testAuth.py
    M src/ZEO/tests/testConfig.py
    M src/ZEO/tests/testZEO.py
    M src/ZEO/tests/testZEO2.py
    M src/ZEO/tests/test_cache.py
    M src/ZEO/tests/zeoserver.py
    M src/ZEO/zeopasswd.py
    M src/ZEO/zrpc/_hmac.py
    M src/ZEO/zrpc/client.py
    M src/ZEO/zrpc/connection.py
    M src/ZEO/zrpc/marshal.py
    M src/ZEO/zrpc/server.py
    M src/ZEO/zrpc/smac.py
    M src/ZEO/zrpc/trigger.py
    A tox.ini

  Log Message:
  -----------
  Some work in progress on porting. It is going slowly.


  Commit: 29b33f5876958846d29c09b593f670d293a36b3f
      https://github.com/zopefoundation/ZEO/commit/29b33f5876958846d29c09b593f670d293a36b3f
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-06 (Wed, 06 Mar 2013)

  Changed paths:
    M src/ZEO/_compat.py
    M src/ZEO/tests/testConfig.py

  Log Message:
  -----------
  ZConfig wants strings.


  Commit: 3fec4906f70388378887f59c9da11a2808f68ad8
      https://github.com/zopefoundation/ZEO/commit/3fec4906f70388378887f59c9da11a2808f68ad8
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-06 (Wed, 06 Mar 2013)

  Changed paths:
    M src/ZEO/StorageServer.py

  Log Message:
  -----------
  Protocol versions are byte strings.


  Commit: d77eea90956b9efac81e27c0a24b52ed116d7ba3
      https://github.com/zopefoundation/ZEO/commit/d77eea90956b9efac81e27c0a24b52ed116d7ba3
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-06 (Wed, 06 Mar 2013)

  Changed paths:
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  Messages are binary.


  Commit: 2d9b3e6c909f5b320951bc45a3669ff246ba35e6
      https://github.com/zopefoundation/ZEO/commit/2d9b3e6c909f5b320951bc45a3669ff246ba35e6
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/_compat.py
    M src/ZEO/zrpc/marshal.py

  Log Message:
  -----------
  Switch to pickle format 3 so bytes and unicodes are not smashed.

Will have to introduce a new protocol version for the new format.


  Commit: ae387e6048f5379954624bcf9e0271f540828a18
      https://github.com/zopefoundation/ZEO/commit/ae387e6048f5379954624bcf9e0271f540828a18
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/ClientStorage.py
    M src/ZEO/ServerStub.py
    M src/ZEO/TransactionBuffer.py
    M src/ZEO/tests/protocols.test
    M src/ZEO/tests/testConnection.py
    M src/ZEO/tests/testZEO2.py
    M src/ZEO/zrpc/client.py
    M src/ZEO/zrpc/connection.py
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  Porting to Python 3: version strings are binary, other compat things.


  Commit: 114dd15d8453412c7bbe63cc6a315b31431e804f
      https://github.com/zopefoundation/ZEO/commit/114dd15d8453412c7bbe63cc6a315b31431e804f
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/StorageServer.py

  Log Message:
  -----------
  Fix weird namespace behavior incompatibilities between Py2 and Py3.


  Commit: 7830739ab4af6f873760df7a1c49933752922cce
      https://github.com/zopefoundation/ZEO/commit/7830739ab4af6f873760df7a1c49933752922cce
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/tests/ConnectionTests.py
    M src/ZEO/tests/IterationTests.py
    M src/ZEO/tests/forker.py
    M src/ZEO/tests/testZEO.py
    M src/ZEO/zrpc/client.py
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  Trivial Py3 porting changes: binary data, print functions.


  Commit: 2ff8ff664f01705a09c1153243269ac30837da85
      https://github.com/zopefoundation/ZEO/commit/2ff8ff664f01705a09c1153243269ac30837da85
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/ClientStorage.py

  Log Message:
  -----------
  Use Pickle protocol 3 on Py3.


  Commit: ef2007c3466700bc053f93aba0f61d9129a00287
      https://github.com/zopefoundation/ZEO/commit/ef2007c3466700bc053f93aba0f61d9129a00287
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  One more Py3 bug.


  Commit: f07858e68c47488ecfce8dbf4e6f13af6709db46
      https://github.com/zopefoundation/ZEO/commit/f07858e68c47488ecfce8dbf4e6f13af6709db46
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-08 (Fri, 08 Mar 2013)

  Changed paths:
    M src/ZEO/monitor.py
    M src/ZEO/tests/testMonitor.py

  Log Message:
  -----------
  ZEO stats monitor fixes.


  Commit: c19bae1d9de3c9309eafc8504b2ed01578d9e2b6
      https://github.com/zopefoundation/ZEO/commit/c19bae1d9de3c9309eafc8504b2ed01578d9e2b6
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-12 (Tue, 12 Mar 2013)

  Changed paths:
    M src/ZEO/tests/testZEO.py

  Log Message:
  -----------
  More trivial Py3 problems.


  Commit: b05992e157226ebee03e8d88e7558f0dc37c24a5
      https://github.com/zopefoundation/ZEO/commit/b05992e157226ebee03e8d88e7558f0dc37c24a5
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/ClientStorage.py
    M src/ZEO/StorageServer.py
    M src/ZEO/tests/ConnectionTests.py
    M src/ZEO/tests/InvalidationTests.py
    M src/ZEO/tests/client-config.test
    M src/ZEO/tests/drop_cache_rather_than_verify.txt
    M src/ZEO/tests/registerDB.test
    M src/ZEO/tests/testConnection.py
    M src/ZEO/tests/testConversionSupport.py
    M src/ZEO/tests/zdoptions.test
    M src/ZEO/tests/zeo-fan-out.test
    M src/ZEO/tests/zeo_blob_cache.test
    M src/ZEO/zrpc/connection.py

  Log Message:
  -----------
  More trivial Py3 fixes.


  Commit: a8ccb27408bbc130649c4c95aaaf196dd46a927a
      https://github.com/zopefoundation/ZEO/commit/a8ccb27408bbc130649c4c95aaaf196dd46a927a
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/tests/testZEO.py

  Log Message:
  -----------
  More Py3 fixes.


  Commit: d1cc4c6fa790c0750063e12946329acf916b3f23
      https://github.com/zopefoundation/ZEO/commit/d1cc4c6fa790c0750063e12946329acf916b3f23
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/tests/zeoserver.py

  Log Message:
  -----------
  The protocol version suddenly becoming an str.


  Commit: 4d9871f6c50535af989331bf90c960afbbc573b6
      https://github.com/zopefoundation/ZEO/commit/4d9871f6c50535af989331bf90c960afbbc573b6
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/tests/protocols.test

  Log Message:
  -----------
  Fix one more test.


  Commit: 366414ae1a373028e1b9341792b5b1bcca0b1817
      https://github.com/zopefoundation/ZEO/commit/366414ae1a373028e1b9341792b5b1bcca0b1817
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M setup.py
    M src/ZEO/scripts/cache_simul.py
    M src/ZEO/scripts/cache_stats.py
    M src/ZEO/tests/test_cache.py

  Log Message:
  -----------
  Fix stats tests.   Need random2.


  Commit: 320e4d78f6b1dab7adf1674200ae31da220124ca
      https://github.com/zopefoundation/ZEO/commit/320e4d78f6b1dab7adf1674200ae31da220124ca
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/scripts/zeopack.py
    M src/ZEO/scripts/zeopack.test
    M src/ZEO/tests/dynamic_server_ports.test
    M src/ZEO/tests/testZEO.py
    M src/ZEO/tests/testZEO2.py
    M src/ZEO/tests/zeo_blob_cache.test

  Log Message:
  -----------
  More Py3 porting.


  Commit: 1be16437fc94e95690ce12e771983b89f2ae3802
      https://github.com/zopefoundation/ZEO/commit/1be16437fc94e95690ce12e771983b89f2ae3802
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  Make an error more explicit.

Used to be "TypeError: str object is not an iterator".


  Commit: cec77209260e9c56c688eb1a5d08f1d0356c17a9
      https://github.com/zopefoundation/ZEO/commit/cec77209260e9c56c688eb1a5d08f1d0356c17a9
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/StorageServer.py

  Log Message:
  -----------
  Fix 4 checkLen tests.


  Commit: b863acd5a81300cc217e4df79d78e39568d5f966
      https://github.com/zopefoundation/ZEO/commit/b863acd5a81300cc217e4df79d78e39568d5f966
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-13 (Wed, 13 Mar 2013)

  Changed paths:
    M src/ZEO/tests/CommitLockTests.py
    M src/ZEO/tests/testZEO.py

  Log Message:
  -----------
  More Py3 test fixes.


  Commit: 2327c87734fddd98b0dc7fab535fccf1754aa050
      https://github.com/zopefoundation/ZEO/commit/2327c87734fddd98b0dc7fab535fccf1754aa050
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-14 (Thu, 14 Mar 2013)

  Changed paths:
    M src/ZEO/auth/auth_digest.py
    M src/ZEO/tests/auth_plaintext.py
    M src/ZEO/zrpc/smac.py

  Log Message:
  -----------
  Sort out authentication hash str/bytes types.


  Commit: ec9bafb322d0e20264bfc9d430ef4563444f07ab
      https://github.com/zopefoundation/ZEO/commit/ec9bafb322d0e20264bfc9d430ef4563444f07ab
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-14 (Thu, 14 Mar 2013)

  Changed paths:
    M src/ZEO/tests/testZEO.py

  Log Message:
  -----------
  Error message differs on py2 and py3.


  Commit: 1f9ba57d886bbdd873727b0ec93ae1a9fa86fa5d
      https://github.com/zopefoundation/ZEO/commit/1f9ba57d886bbdd873727b0ec93ae1a9fa86fa5d
  Author: Albertas Agejevas <alga at pov.lt>
  Date:   2013-03-15 (Fri, 15 Mar 2013)

  Changed paths:
    M src/ZEO/scripts/tests.py
    M src/ZEO/tests/testZEO.py
    M src/ZEO/tests/testZEO2.py

  Log Message:
  -----------
  Add compatibility with Py2 back.


  Commit: 25ae10a311d369181f36cb86fa3240125eabd2e9
      https://github.com/zopefoundation/ZEO/commit/25ae10a311d369181f36cb86fa3240125eabd2e9
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-02 (Thu, 02 May 2013)

  Changed paths:
    R ZODB-4.0.0dev.tar.gz
    M tox.ini

  Log Message:
  -----------
  Use git checkout of ZODB 'py3' branch.

Explicitly install the 'random2' dependency.


  Commit: 8f5297493b2e670acdaf7a1e4791e69f619970cb
      https://github.com/zopefoundation/ZEO/commit/8f5297493b2e670acdaf7a1e4791e69f619970cb
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-02 (Thu, 02 May 2013)

  Changed paths:
    M src/ZEO/tests/testAuth.py

  Log Message:
  -----------
  Hide test base from nose.


  Commit: 5986a4db7f40813162eee1a6a65805ac6e816f5b
      https://github.com/zopefoundation/ZEO/commit/5986a4db7f40813162eee1a6a65805ac6e816f5b
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-02 (Thu, 02 May 2013)

  Changed paths:
    M .gitignore

  Log Message:
  -----------
  Ignore derived.


  Commit: d7ce1b5d6bac4a0b50f93d24c6ba6f72f75a1718
      https://github.com/zopefoundation/ZEO/commit/d7ce1b5d6bac4a0b50f93d24c6ba6f72f75a1718
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-02 (Thu, 02 May 2013)

  Changed paths:
    M CHANGES.txt
    M setup.py
    M src/ZEO/_compat.py

  Log Message:
  -----------
  Add support for Python 3.2.


  Commit: 763fd763e50f2723f69e85b0128da722398bccb3
      https://github.com/zopefoundation/ZEO/commit/763fd763e50f2723f69e85b0128da722398bccb3
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-02 (Thu, 02 May 2013)

  Changed paths:
    M src/ZEO/zrpc/trigger.py

  Log Message:
  -----------
  Avoid deprecation warning under Python >= 2.7.


  Commit: 56319ef6826b9c80ea962f8a25acdfc266bfc109
      https://github.com/zopefoundation/ZEO/commit/56319ef6826b9c80ea962f8a25acdfc266bfc109
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-10 (Fri, 10 May 2013)

  Changed paths:
    M CHANGES.txt
    M buildout.cfg
    M setup.py
    M tox.ini

  Log Message:
  -----------
  Note dependency on released ZODB >= 4.0.0b1.


  Commit: aec097884af219978bc07994c9ca1ed25dd13430
      https://github.com/zopefoundation/ZEO/commit/aec097884af219978bc07994c9ca1ed25dd13430
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-10 (Fri, 10 May 2013)

  Changed paths:
    M src/ZEO/tests/testConnection.py
    M src/ZEO/tests/testZEO.py
    M src/ZEO/tests/testZEOOptions.py
    M src/ZEO/tests/test_cache.py

  Log Message:
  -----------
  Suppress Py3k resource warnings files from 'open()'.


  Commit: 4a3ffb9e933a4edab2cd4b7c44397837de6cfa26
      https://github.com/zopefoundation/ZEO/commit/4a3ffb9e933a4edab2cd4b7c44397837de6cfa26
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-10 (Fri, 10 May 2013)

  Changed paths:
    M src/ZEO/tests/forker.py

  Log Message:
  -----------
  Suppress Py3k resource warnings for sockets.


  Commit: 4895e57df34a32d1659c94100adc80aa74746581
      https://github.com/zopefoundation/ZEO/commit/4895e57df34a32d1659c94100adc80aa74746581
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-10 (Fri, 10 May 2013)

  Changed paths:
    M src/ZEO/tests/testZEO.py

  Log Message:
  -----------
  Remove guard against Python 2.5.


  Commit: 4e3a243b7d3b2a00b6cfade8ff245331ef96dc77
      https://github.com/zopefoundation/ZEO/commit/4e3a243b7d3b2a00b6cfade8ff245331ef96dc77
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-14 (Tue, 14 May 2013)

  Changed paths:
    M .gitignore
    A .travis.yml
    M src/ZEO/ClientStorage.py

  Log Message:
  -----------
  Merge from master.


  Commit: 4d7f54c4877875124cdffcb5a06fb6360906a4e0
      https://github.com/zopefoundation/ZEO/commit/4d7f54c4877875124cdffcb5a06fb6360906a4e0
  Author: Tres Seaver <tseaver at palladion.com>
  Date:   2013-05-14 (Tue, 14 May 2013)

  Changed paths:
    M .gitignore
    M src/ZEO/tests/testZEO.py
    M src/ZEO/tests/zeo-fan-out.test

  Log Message:
  -----------
  Merge master.


Compare: https://github.com/zopefoundation/ZEO/compare/781a7063e02b...4d7f54c48778


More information about the checkins mailing list