This file is indexed.

/usr/lib/python2.7/dist-packages/ZODB3-3.10.7.egg-info/PKG-INFO is in python-zodb 1:3.10.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
Metadata-Version: 1.1
Name: ZODB3
Version: 3.10.7
Summary: Zope Object Database: object database and persistence
Home-page: UNKNOWN
Author: Zope Foundation and Contributors
Author-email: zodb-dev@zope.org
License: ZPL 2.1
Description: The Zope Object Database provides an object-oriented database for
        Python that provides a high-degree of transparency. Applications can
        take advantage of object database features with few, if any, changes
        to application logic.  ZODB includes features such as a plugable storage
        interface, rich transaction support, and undo.
        
        
        .. contents::
        
        ====
        ZODB
        ====
        
        Introduction
        ============
        
        The ZODB  package provides a  set of tools  for using the  Zope Object
        Database (ZODB).  The components you  get with the ZODB release are as
        follows:
        
        - Core ZODB, including the persistence machinery
        - Standard storages such as FileStorage
        - The persistent BTrees modules
        - ZEO, for scalability needs
        - documentation (needs a lot more work)
        
        Our primary development platforms are Linux, Mac OS X, and Windows
        XP.  The test suite should pass without error on all of these
        platforms, although it can take a long time on Windows -- longer if
        you use ZoneAlarm.  Many particularly slow tests are skipped unless
        you pass --all as an argument to test.py.
        
        Compatibility
        =============
        
        ZODB 3.10 requires Python 2.5 or later.
        
        Note --
           When using ZEO and upgrading from Python 2.4, you need to upgrade
           clients and servers at the same time, or upgrade clients first and
           then servers.  Clients running Python 2.5 or 2.6 will work with
           servers running Python 2.4.  Clients running Python 2.4 won't work
           properly with servers running Python 2.5 or later due to changes in
           the way Python implements exceptions.
        
        ZODB ZEO clients from ZODB 3.2 on can talk to ZODB 3.10 servers.  ZODB
        ZEO 3.10 Clients can talk to ZODB 3.8, 3.9, and 3.10 ZEO servers.
        
        Note --
           ZEO 3.10 servers don't support undo for older clients.
        
        Prerequisites
        =============
        
        You must have Python installed. If you're using a system Python
        install, make sure development support is installed too.
        
        You also need the transaction, zc.lockfile, ZConfig, zdaemon,
        zope.event, zope.interface, zope.proxy and zope.testing packages.  If
        you don't have them and you can connect to the Python Package Index,
        then these will be installed for you if you don't have them.
        
        Installation
        ============
        
        ZODB is released as a distutils package.  The easiest ways to build
        and install it are to use `easy_install
        <http://peak.telecommunity.com/DevCenter/EasyInstall>`_, or
        `zc.buildout <http://www.python.org/pypi/zc.buildout>`_.
        
        To install by hand, first install the dependencies, ZConfig, zdaemon,
        zope.interface, zope.proxy and zope.testing.  These can be found
        in the `Python Package Index <http://www.python.org/pypi>`_.
        
        To run the tests, use the test setup command::
        
          python setup.py test
        
        It will download dependencies if needed.  If this happens, ou may get
        an import error when the test command gets to looking for tests.  Try
        running the test command a second time and you should see the tests
        run.
        
        ::
        
          python setup.py test
        
        To install, use the install command::
        
          python setup.py install
        
        
        Testing for Developers
        ======================
        
        The ZODB checkouts are `buildouts <http://www.python.org/pypi/zc.buildout>`_.
        When working from a ZODB checkout, first run the bootstrap.py script
        to initialize the buildout:
        
            % python bootstrap.py
        
        and then use the buildout script to build ZODB and gather the dependencies:
        
            % bin/buildout
        
        This creates a test script:
        
            % bin/test -v
        
        This command will run all the tests, printing a single dot for each
        test.  When it finishes, it will print a test summary.  The exact
        number of tests can vary depending on platform and available
        third-party libraries.::
        
            Ran 1182 tests in 241.269s
        
            OK
        
        The test script has many more options.  Use the ``-h`` or ``--help``
        options to see a file list of options.  The default test suite omits
        several tests that depend on third-party software or that take a long
        time to run.  To run all the available tests use the ``--all`` option.
        Running all the tests takes much longer.::
        
            Ran 1561 tests in 1461.557s
        
            OK
        
        
        Maintenance scripts
        -------------------
        
        Several scripts are provided with the ZODB and can help for analyzing,
        debugging, checking for consistency, summarizing content, reporting space used
        by objects, doing backups, artificial load testing, etc.
        Look at the ZODB/script directory for more informations.
        
        
        History
        =======
        
        The historical version numbering schemes for ZODB and ZEO are complicated.
        Starting with ZODB 3.4, the ZODB and ZEO version numbers are the same.
        
        In the ZODB 3.1 through 3.3 lines, the ZEO version number was "one smaller"
        than the ZODB version number; e.g., ZODB 3.2.7 included ZEO 2.2.7.  ZODB and
        ZEO were distinct releases prior to ZODB 3.1, and had independent version
        numbers.
        
        Historically, ZODB was distributed as a part of the Zope application
        server.  Jim Fulton's paper at the Python conference in 2000 described
        a version of ZODB he called ZODB 3, based on an earlier persistent
        object system called BoboPOS.  The earliest versions of ZODB 3 were
        released with Zope 2.0.
        
        Andrew Kuchling extracted ZODB from Zope 2.4.1 and packaged it for
        use by standalone Python programs.  He called this version
        "StandaloneZODB".  Andrew's guide to using ZODB is included in the Doc
        directory.  This version of ZODB was hosted at
        http://sf.net/projects/zodb.  It supported Python 1.5.2, and might
        still be of interest to users of this very old Python version.
        
        Zope Corporation released a version of ZODB called "StandaloneZODB
        1.0" in Feb. 2002.  This release was based on Andrew's packaging, but
        built from the same CVS repository as Zope.  It is roughly equivalent
        to the ZODB in Zope 2.5.
        
        Why not call the current release StandaloneZODB?  The name
        StandaloneZODB is a bit of a mouthful.  The standalone part of the
        name suggests that the Zope version is the real version and that this
        is an afterthought, which isn't the case.  So we're calling this
        release "ZODB". We also worked on a ZODB4 package for a while and
        made a couple of alpha releases.  We've now abandoned that effort,
        because we didn't have the resources to pursue ot while also maintaining
        ZODB(3).
        
        License
        =======
        
        ZODB is distributed under the Zope Public License, an OSI-approved
        open source license.  Please see the LICENSE.txt file for terms and
        conditions.
        
        The ZODB/ZEO Programming Guide included in the documentation is a
        modified version of Andrew Kuchling's original guide, provided under
        the terms of the GNU Free Documentation License.
        
        
        More information
        ================
        
        We maintain a Wiki page about all things ZODB, including status on
        future directions for ZODB.  Please see
        
            http://wiki.zope.org/ZODB/FrontPage
        
        and feel free to contribute your comments.  There is a Mailman mailing
        list in place to discuss all issues related to ZODB.  You can send
        questions to
        
            zodb-dev@zope.org
        
        or subscribe at
        
            http://lists.zope.org/mailman/listinfo/zodb-dev
        
        and view its archives at
        
            http://lists.zope.org/pipermail/zodb-dev
        
        Note that Zope Corp mailing lists have a subscriber-only posting policy.
        
        Andrew's ZODB Programmers Guide is made available in several
        forms, including DVI and HTML.  To view it online, point your
        browser at the file Doc/guide/zodb/index.html
        
        
        Bugs and Patches
        ================
        
        Bug reports and patches should be added to the Launchpad:
        
            https://launchpad.net/zodb
        
        
        ..
           Local Variables:
           mode: indented-text
           indent-tabs-mode: nil
           sentence-end-double-space: t
           fill-column: 70
           End:
        
        
        ================
         Change History
        ================
        
        3.10.7 (2016-09-14)
        ===================
        
        Bugs Fixed
        ----------
        
        - FileStorage: stop looking for revision when past it.
          https://github.com/zopefoundation/ZODB/pull/15
        
        3.10.6 (2016-09-13)
        ===================
        
        Bugs Fixed
        ----------
        
        - POSKeyError during transaction.commit when after savepoint.rollback 
        
        - Ensured that the export file and index file created by ``repozo`` share
          the same timestamp.
        
          https://bugs.launchpad.net/zodb/+bug/993350
        
        - Pinned the ``transaction`` and ``manuel`` dependencies to Python 2.5-
          compatible versions when installing under Python 2.5.
        
        - Avoid failure during cleanup of nested databases that provide MVCC
          on storage level (Relstorage).
          https://github.com/zopefoundation/ZODB/issues/45
        
        - Fix possible data corruption after FileStorage is truncated to roll back a
          transaction.
          https://github.com/zopefoundation/ZODB/pull/52
        
        - Call _p_resolveConflict() even if a conflicting change doesn't change the
          state. This reverts to the behaviour of 3.10.3 and older.
        
        - Ensure that ``__slots__`` attributes are cleared when a persistent object
          is ghostified.
        
        3.10.5 (2011-11-19)
        ===================
        
        Bugs Fixed
        ----------
        
        - Conflict resolution failed when state included cross-database
          persistent references with classes that couldn't be imported.
        
        3.10.4 (2011-11-17)
        ===================
        
        Bugs Fixed
        ----------
        
        - Conflict resolution failed when state included persistent references
          with classes that couldn't be imported.
        
        3.10.3 (2011-04-12)
        ===================
        
        Bugs Fixed
        ----------
        
        - "activity monitor not updated for subconnections when connection
          returned to pool"
        
          https://bugs.launchpad.net/zodb/+bug/737198
        
        - "Blob temp file get's removed before it should",
          https://bugs.launchpad.net/zodb/+bug/595378
        
          A way this to happen is that a transaction is aborted after the
          commit process has started. I don't know how this would happen in
          the wild.
        
          In 3.10.3, the ZEO tpc_abort call to the server is changed to be
          synchronous, which should address this case. Maybe there's another
          case.
        
        
        Performance enhancements
        ------------------------
        
        - Improved ZEO client cache implementation to make it less likely to
          evict objects that are being used.
        
        - Small (possibly negligable) reduction in CPU in ZEO storage servers
          to service object loads and in networking code.
        
        3.10.2 (2011-02-12)
        ===================
        
        Bugs Fixed
        ----------
        
        - 3.10 introduced an optimization to try to address BTree conflict
          errors arrising for basing BTree keys on object ids. The
          optimization caused object ids allocated in aborted transactions to
          be reused. Unfortunately, this optimzation led to some rather
          severe failures in some applications.  The symptom is a conflict
          error in which one of the serials mentioned is zero.  This
          optimization has been removed.
        
          See (for example): https://bugs.launchpad.net/zodb/+bug/665452
        
        - ZEO server transaction timeouts weren't logged as critical.
        
          https://bugs.launchpad.net/zodb/+bug/670986
        
        3.10.1 (2010-10-27)
        ===================
        
        Bugs Fixed
        ----------
        
        - When a transaction rolled back a savepoint after adding objects and
          subsequently added more objects and committed, an error could be
          raised "ValueError: A different object already has the same oid"
          causing the transaction to fail. Worse, this could leave a database
          in a state where subsequent transactions in the same process would
          fail.
        
          https://bugs.launchpad.net/zodb/+bug/665452
        
        - Unix domain sockets didn't work for ZEO (since the addition of IPv6
          support). https://bugs.launchpad.net/zodb/+bug/663259
        
        - Removed a missfeature that can cause performance problems when using
          an external garbage collector with ZEO.  When objects were deleted
          from a storage, invalidations were sent to clients. This makes no
          sense.  It's wildly unlikely that the other connections/clients have
          copies of the garbage.  In normal storage garbage collection, we
          don't send invalidations. There's no reason to send them when an
          external garbage collector is used.
        
        - ZEO client cache simulation misshandled invalidations
          causing incorrect statistics and errors.
        
        3.10.0 (2010-10-08)
        ===================
        
        New Features
        ------------
        
        - There are a number of performance enhancements for ZEO storage
          servers.
        
        - FileStorage indexes use a new format. They are saved and loaded much
          faster and take less space. Old indexes can still be read, but new
          indexes won't be readable by older versions of ZODB.
        
        - The API for undoing multiple transactions has changed.  To undo
          multiple transactions in a single transaction, pass a list of
          transaction identifiers to a database's undoMultiple method. Calling a
          database's undo method multiple times in the same transaction now
          raises an exception.
        
        - The ZEO protocol for undo has changed.  The only user-visible
          consequence of this is that when ZODB 3.10 ZEO servers won't support
          undo for older clients.
        
        - The storage API (IStorage) has been tightened. Now, storages should
          raise a StorageTransactionError when invalid transactions are passed
          to tpc_begin, tpc_vote, or tpc_finish.
        
        - ZEO clients (``ClientStorage`` instances) now work in forked processes,
          including those created via ``multiprocessing.Process`` instances.
        
        - Broken objects now provide the IBroken interface.
        
        - As a convenience, you can now pass an integer port as an address to
          the ZEO ClientStorage constructor.
        
        - As a convenience, there's a new ``client`` function in the ZEO
          package for constructing a ClientStorage instance.  It takes the
          same arguments as the ClientStorage constructor.
        
        - DemoStorages now accept constructor athuments, close_base_on_close
          and close_changes_on_close, to control whether underlying storages
          are closed when the DemoStorage is closed.
        
          https://bugs.launchpad.net/zodb/+bug/118512
        
        - Removed the dependency on zope.proxy.
        
        - Removed support for the _p_independent mini framework, which was
          made moot by the introduction of multi-version concurrency control
          several years ago.
        
        - Added support for the transaction retry convenience
          (transaction-manager attempts method) introduced in the
          ``transaction`` 1.1.0 release.
        
        - Enhanced the database opening conveniences:
        
          - You can now pass storage keyword arguments to ZODB.DB and
            ZODB.connection.
        
          - You can now pass None (rather than a storage or file name) to get
            a database with a mapping storage.
        
        - Databases now warn when committing very large records (> 16MB).
          This is to try to warn people of likely design mistakes.  There is a
          new option (large_record_size/large-record-size) to control the
          record size at which the warning is issued.
        
        - Added support for wrapper storages that transform pickle data.
          Applications for this include compression and encryption.  An
          example wrapper storage implementation, ZODB.tests.hexstorage, was
          included for testing.
        
          It is important that storage implementations not assume that
          storages contain pickles.  Renamed IStorageDB to IStorageWrapper and
          expanded it to provide methods for transforming and untransforming
          data records.  Storages implementations should use these methods to
          get pickle data from stored records.
        
        - Deprecated ZODB.interfaces.StorageStopIteration.  Storage
          iterator implementations should just raise StopIteration, which
          means they can now be implemented as generators.
        
        - The filestorage packer configuration option noe accepts values of
          the form ``modname:expression``, allowing the use of packer
          factories with options.
        
        - Added a new API that allows applications to make sure that current
          data are read. For example, with::
        
            self._p_jar.readCurrent(ob)
        
          A conflict error will be raised if the version of ob read by the
          transaction isn't current when the transaction is committed.
        
          Normally, ZODB only assures that objects read are consistent, but not
          necessarily up to date.  Checking whether an object is up to date is
          important when information read from one object is used to update
          another.
        
          BTrees are an important case of reading one object to update
          another.  Internal nodes are read to decide which leave notes are
          updated when a BTree is updated.  BTrees now use this new API to
          make sure that internal nodes are up to date on updates.
        
        - When transactions are aborted, new object ids allocated during the
          transaction are saved and used in subsequent transactions. This can
          help in situations where object ids are used as BTree keys and the
          sequential allocation of object ids leads to conflict errors.
        
        - ZEO servers now support a server_status method for for getting
          information on the number of clients, lock requests and general
          statistics.
        
        - ZEO clients now support a client_label constructor argument and
          client-label configuration-file option to specify a label for a
          client in server logs. This makes it easier to identify specific
          clients corresponding to server log entries, especially when there
          are multiple clients originating from the same machine.
        
        - Improved ZEO server commit lock logging.  Now, locking activity is
          logged at the debug level until the number of waiting lock requests
          gets above 3.  Log at the critical level when the number of waiting
          lock requests gets above 9.
        
        - The file-storage backup script, repozo, will now create a backup
          index file if an output file name is given via the --output/-o
          option.
        
        - Added a '--kill-old-on-full' argument to the repozo backup options:
          if passed, remove any older full or incremental backup files from the
          repository after doing a full backup.
          (https://bugs.launchpad.net/zope2/+bug/143158)
        
        - The mkzeoinst script has been moved to a separate project:
        
            http://pypi.python.org/pypi/zope.mkzeoinstance
        
          and is no-longer included with ZODB.
        
        - Removed untested unsupported dbmstorage fossile.
        
        - ZEO servers no longer log their pids in every log message. It's just
          not interesting. :)
        
        Bugs fixed
        ----------
        
        - When a pool timeout was specified for a database and old connections
          were removed due to timing out, an error occured due to a bug in the
          connection cleanup logic.
        
        - When multi-database connections were no longer used and cleaned up,
          their subconnections weren't cleaned up properly.
        
        - ZEO didn't work with IPv6 addrsses.
          Added IPv6 support contributed by Martin v. |Lowis|.
        
        - A file storage bug could cause ZEO clients to have incorrect
          information about current object revisions after reconnecting to a
          database server.
        
        - Updated the 'repozo --kill-old-on-full' option to remove any '.index'
          files corresponding to backups being removed.
        
        - ZEO extension methods failed when a client reconnected to a
          storage. (https://bugs.launchpad.net/zodb/+bug/143344)
        
        - Clarified the return Value for lastTransaction in the case when
          there aren't any transactions.  Now a string of 8 nulls (aka "z64")
          is specified.
        
        - Setting _p_changed on a blob wo actually writing anything caused an
          error. (https://bugs.launchpad.net/zodb/+bug/440234)
        
        - The verbose mode of the fstest was broken.
          (https://bugs.launchpad.net/zodb/+bug/475996)
        
        - Object ids created in a savepoint that is rolled back wren't being
          reused. (https://bugs.launchpad.net/zodb/+bug/588389)
        
        - Database connections didn't invalidate cache entries when conflict
          errors were raised in response to checkCurrentSerialInTransaction
          errors. Normally, this shouldn't be a problem, since there should be
          pending invalidations for these oids which will cause the object to
          be invalidated. There have been issues with ZEO persistent cache
          management that have caused out of date data to remain in the cache.
          (It's possible that the last of these were addressed in the
          3.10.0b5.) Invalidating read data when there is a conflict error
          provides some extra insurance.
        
        - The interface, ZODB.interfaces.IStorage was incorrect. The store
          method should never return a sequence of oid and serial pairs.
        
        - When a demo storage push method was used to create a new demo
          storage and the new storage was closed, the original was
          (incorrectly) closed.
        
        - There were numerous bugs in the ZEO cache tracing and analysis code.
          Cache simulation, while not perfect, seems to be much more accurate
          now than it was before.
        
          The ZEO cache trace statistics and simulation scripts have been
          given more descriptive names and moved to the ZEO scripts package.
        
        - BTree sets and tree sets didn't correctly check values passed to
          update or to constructors, causing Python to exit under certain
          circumstances.
        
        - Fixed bug in copying a BTrees.Length instance.
          (https://bugs.launchpad.net/zodb/+bug/516653)
        
        - Fixed a serious bug that caused cache failures when run
          with Python optimization turned on.
        
          https://bugs.launchpad.net/zodb/+bug/544305
        
        - When using using a ClientStorage in a Storage server, there was a
          threading bug that caused clients to get disconnected.
        
        - On Mac OS X, clients that connected and disconnected quickly could
          cause a ZEO server to stop accepting connections, due to a failure
          to catch errors in the initial part of the connection process.
        
          The failure to properly handle exceptions while accepting
          connections is potentially problematic on other platforms.
        
          Fixes: https://bugs.launchpad.net/zodb/+bug/135108
        
        - Object state management wasn't done correctly when classes
          implemented custom _p_deavtivate methods.
          (https://bugs.launchpad.net/zodb/+bug/185066)
        
        
        .. |Lowis| unicode:: L \xf6 wis
        
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: Unix
Classifier: Framework :: ZODB