summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* The C impl. caches BuiltinImmplentationSpecifications too early.Tres Seaver2012-04-051-12/+33
| | | | | So, we need to monkey-patch its contents, rather than stuff a new dict into the module.
* PyPy coverage tweak.Tres Seaver2012-04-041-1/+1
|
* Merge Py3k w/o 2to3 work.Tres Seaver2012-04-0415-1082/+1155
|
* Merge from LP branch.Tres Seaver2012-03-2633-5791/+8227
|
* Avoid exceptions due to tne new ``__qualname__`` attribute added in Python 3.3 Tres Seaver2012-02-161-3/+5
| | | | | | | See PEP 3155 for rationale. Thanks to Antoine Pitrou for the patch. Fixes LP #900906.
* typo implementor->implementerBrian Sutherland2011-10-093-5/+5
|
* Merge chrism-componentregistry branch: Chris McDonough2011-09-153-2/+2035
| | | | | svn merge -r122752:122809 svn+ssh://svn.zope.org/repos/main/zope.interface/branches/chrism-componentregistry
* Fix test failure under 'python setup.py test' in new test for '__hash__'.Tres Seaver2011-08-121-0/+2
| | | | | Fixes LP #825249.
* Fix Python 2.5 incompatibility introduced in new tests of ``__hash__``.Tres Seaver2011-08-121-1/+6
|
* Work around buggy behavior in some subclasses of `InterfaceClass``Tres Seaver2011-08-113-8/+60
| | | | | | | | | Some sublcasses invoke '__hash__' before initializing '__module__' and '__name__'. The workaround returns a fixed constant hash in such cases, and issues a UserWarning. Addresses LP #811792.
* Revert r122462 after updating zope.app.interface.Tres Seaver2011-08-111-2/+1
|
* Fix a regression introduced in 3.6.4, that made one zope.app.interface test failGediminas Paulauskas2011-08-041-1/+2
|
* - Fix testing deprecation warnings issued when tested under Py3K.Chris McDonough2011-07-213-70/+88
|
* LP 804951: InterfaceClass instances were unhashable under Python 3.x.Tres Seaver2011-07-052-0/+12
|
* Correct comparison of interfaces from different modules but with the same name.Tres Seaver2011-05-263-9/+59
| | | | | Fixes LP #570942.
* Fixes for small issues when running tests under Python 3.2 using zope.testrunnerBrian Sutherland2011-04-292-2/+5
|
* Specify return value type for C optimizations module init under Python 3.Tres Seaver2010-11-151-4/+1
| | | | | | | | | | | Undeclared value caused warnings, and segfaults on some 64 bit architectures. Also, remove redundant conditional define of PyMODINIT_FUNC: it is present in 'pyport.h' on all Python versions we care about, and the conditional version here was wrong for Python 3. Fixes LP # 675064.
* Remove CVS-era Id fossils.Tres Seaver2010-06-0331-64/+2
|
* Fix compiler warnings under GCC 4.3.3.Tres Seaver2010-05-021-2/+2
|
* Clear the cache used by ``Specificaton.get`` inside ``Specification.changed``.Tres Seaver2010-04-132-0/+30
| | | | | | | Fixes LP #185974: Thanks to Jacob Holm for the patch.
* Scrub trailing ws, use canonical suite-generation form.Tres Seaver2010-04-131-23/+17
|
* Cleaning up imports, mostly in tests, some duplicates created by my merge. ↵Lennart Regebro2010-04-118-28/+22
| | | | Pyflakes is happier now, but we do a lot of things that confuses it.
* Merge of regebro-python3 branch, adding Python 3.1 compatibility\!Lennart Regebro2010-04-0919-209/+363
|
* Comply with repository policy.Tres Seaver2010-04-0634-34/+34
|
* Fixed typoVincent Fretin2010-01-021-1/+1
|
* Use the standard Python doctest module instead of zope.testing.doctest, whichFabio Tranchitella2009-12-236-11/+14
| | | | | has been deprecated.
* Fixed unit tests replacing zope.testing.doctestunit with doctest: it has beenFabio Tranchitella2009-12-223-5/+4
| | | | | deprecated.
* Fix typo.Martijn Faassen2009-12-181-1/+1
|
* Revert incorrect copyright header update.Christian Theune2009-12-1734-34/+34
|
* Cleanups: make pyflakes happy.Tres Seaver2009-12-171-13/+20
|
* Clean out module-scope imports of MUT, other cruft.Tres Seaver2009-12-171-78/+127
|
* Fix an edge case: make providedBy() work when a class has '__provides__' inWolfgang Schnerring2009-12-083-2/+21
| | | | | its __slots__ (see http://thread.gmane.org/gmane.comp.web.zope.devel/22490)
* Updating copyright header after transfer of ownership to the Zope FoundationChristian Theune2009-11-0234-34/+34
|
* clean up some comments and some whitespaceGary Poster2009-10-312-45/+41
|
* revert accidental checkin that should have been on a branchWolfgang Schnerring2009-09-126-683/+0
|
* copy fixers pertaining to zope.interface into the zope.interface treeWolfgang Schnerring2009-09-126-0/+683
|
* clean up registry structures to avoid unecessary references to globalFred Drake2009-06-302-5/+97
| | | | | | objects; this makes it easier for those objects to be removed from apps once relevant registrations are removed
* Confusion.Chris McDonough2009-04-231-0/+9
|
* 'setuptools' is not a dependency, reverting r97875Baiju Muthukadan2009-03-281-1/+7
|
* As 'setuptools' is a dependency 'pkg_resources' will be available always. ↵Baiju Muthukadan2009-03-111-7/+1
| | | | Ref: http://mail.zope.org/pipermail/zope-dev/2009-March/035277.html
* Fix formatting. Improve package description. Add changelog entries.Dan Korostelev2009-03-011-1/+1
|
* Add sphinx docs generation.Dan Korostelev2009-03-014-14/+29
| | | | | Remove zpkg stuff. Cleanup CHANGES.txt formatting.
* verifyObject: use getattr instead of hasattr to test for object attributesThomas Lotze2008-10-282-6/+6
| | | | | | in order to let exceptions other than AttributeError raised by properties propagate to the caller
* added tests for verifyObject in its current stateThomas Lotze2008-10-282-1/+123
|
* Whitespace fixes.Baiju Muthukadan2008-10-241-2/+2
|
* - Fix a typo in documentationSidnei da Silva2008-07-081-1/+3
| | | | | | - Add a DocTestSuite for odd.py module, so their tests are run
* Fixed: test returns <type 'object'>Georgy Berdyshev2008-07-081-1/+1
| | | | | Signed-off-by: Georgy Berdyshev - Георгий Бердышев <codingmaster@gmail.com>
* whitespace fixesBenji York2008-04-012-12/+12
|
* trailing whitespace fixBenji York2008-04-011-1/+1
|
* reverted r81363 since it "breaks assigning to __class__, which the twisted ↵Andreas Zeidler2008-01-141-6/+6
| | | | folks depend on"