zopefoundation / Products.ZCatalog

Zope's indexing and search solution.
Other
5 stars 22 forks source link

Fix DateTime SyntaxError while browsing DateIndex #145

Closed davisagli closed 1 year ago

davisagli commented 1 year ago

Fixes #144

This operation is intended to be floor division (discarding the remainder to give an integer result). But the meaning of / changed from Python 2 to 3, so now we need to use //.

icemac commented 1 year ago

Released in https://pypi.org/project/Products.ZCatalog/7.0/.

davisagli commented 1 year ago

@icemac Thank you!