IRC log of #zope for Sunday, 2011-05-08

*** alexpilz has quit IRC00:04
*** dayne has joined #zope00:24
*** Spanktar has joined #zope00:49
*** CaveJohnsonHere has joined #zope00:49
CaveJohnsonHereis it possible to change a value of an existing variable in TAL?00:50
koshsorry that one I don't know00:54
*** zagy1 has joined #zope00:58
*** zagy has quit IRC00:58
*** alga has quit IRC01:12
*** Spanktar has quit IRC01:15
*** pjfd4 has joined #zope01:33
*** Spanktar has joined #zope01:40
*** Spanktar has quit IRC01:47
*** Spanktar has joined #zope01:49
*** dayne1 has joined #zope02:56
*** pjfd4 has quit IRC02:56
*** dayne has quit IRC02:58
*** ccomb has quit IRC02:59
*** Arfrever has quit IRC04:03
*** pjfd4 has joined #zope04:18
*** pjfd4 has quit IRC04:35
*** zagy has joined #zope05:21
*** zagy has quit IRC05:23
*** zagy1 has quit IRC05:24
*** Spanktar has quit IRC06:10
*** Spanktar has joined #zope06:11
*** davisagli has quit IRC06:34
*** davisagli has joined #zope06:36
*** kleist has joined #zope06:47
*** slackrunner has quit IRC07:19
*** trustedsage has quit IRC07:22
*** trustedsage has joined #zope07:23
*** davisagli has left #zope08:30
*** davisagli has quit IRC08:30
*** CaveJohnsonHere has quit IRC09:16
*** webmaven has quit IRC09:27
*** planetzopebot has quit IRC10:08
*** planetzopebot has joined #zope10:09
*** ccomb has joined #zope10:18
*** slackrunner has joined #zope11:54
*** mr_jolly has joined #zope12:12
*** mr_jolly has quit IRC12:14
*** mr_jolly has joined #zope12:17
*** mr_jolly has left #zope12:37
CIA-83hannosch * r121575 DateTime/src/DateTime/tests/ (testDateTime.py julian_testdata.txt.gz julian_testdata.txt): Avoid some brute-force tests using every day in the range of 1970 to 202013:40
*** m8 has joined #zope13:43
CIA-83hannosch * r121576 DateTime/src/DateTime/tests/testDateTime.py: Test some interesting dates, instead of every date in a year in `testInternationalDateformat`14:37
CIA-83hannosch * r121577 DateTime/ (4 files in 3 dirs):14:37
CIA-83Make DateTime a new-style class and limit its available attributes via a slots14:37
CIA-83definition. The pickle size increases to 110 bytes thanks to the14:37
CIA-83`ccopy_reg\n_reconstructor` stanza. But the memory size drops from 3kb to 50014:37
CIA-83bytes for each instance.14:37
CIA-83hannosch * r121578 DateTime/ (CHANGES.txt src/DateTime/DateTime.py src/DateTime/pytz.txt): Moved pytz cache from `DateTime._tzinfo` to a module global `_TZINFO`.14:37
CIA-83hannosch * r121579 DateTime/src/DateTime/ (DateTime.py tests/testDateTime.py): Some PEP8, avoid module level _cache alias for the PytzCache class14:37
*** mr_jolly has joined #zope15:07
CIA-83hannosch * r121580 DateTime/src/DateTime/DateTime.py: More PEP815:56
CIA-83hannosch * r121581 DateTime/src/DateTime/DateTime.py: Move functions before classes15:56
CIA-83hannosch * r121582 DateTime/src/DateTime/DateTime.py: Turn strftimeFormatter into a function15:56
CIA-83hannosch * r121583 DateTime/src/DateTime/DateTime.py: Move class variable definition to the top of the class15:56
CIA-83hannosch * r121584 DateTime/src/DateTime/DateTime.py: I should have removed _tzinfo when I said so15:56
CIA-83hannosch * r121585 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Removed deprecated `_isDST` and `_localzone` class variables.15:56
CIA-83hannosch * r121586 DateTime/ (4 files in 3 dirs): No longer provide the `DateError`, `DateTimeError`, `SyntaxError` and `TimeError` exceptions as class attributes, import them from their canonical `DateTime.interfaces` location instead.15:56
CIA-83hannosch * r121587 DateTime/src/DateTime/DateTime.py: Move various internal variables to constants at module scope15:56
CIA-83hannosch * r121588 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Moved various internal parsing related class variables to module constants.15:56
CIA-83hannosch * r121589 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Avoid storing `_aday`, `_fday` and `_pday` in memory.15:56
CIA-83hannosch * r121590 DateTime/ (CHANGES.txt src/DateTime/DateTime.py):15:56
CIA-83Avoid storing `_aday`, `_fday`, `_pday`, `_amon`, `_fmon` and `_pmon` in memory15:56
CIA-83for every instance but look them up dynamically based on `_dayoffset` and15:56
CIA-83`_month`. This saves another 150 bytes of memory per DateTime instance.15:56
CIA-83hannosch * r121591 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): No longer store _pm and _pmhour15:56
*** morphex has joined #zope15:56
*** motto has joined #zope16:06
*** motto has quit IRC16:06
*** m8 has quit IRC16:07
*** youyou has quit IRC16:32
CIA-83hannosch * r121592 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Updated exception raising syntax to current style.16:33
CIA-83hannosch * r121593 DateTime/src/DateTime/DateTime.py: PEP816:33
*** youyou has joined #zope16:33
*** ccomb1 has joined #zope17:03
*** ccomb has quit IRC17:03
*** ccomb1 has quit IRC17:21
*** ccomb has joined #zope17:21
*** ccomb1 has joined #zope17:24
*** ccomb has quit IRC17:25
*** ccomb1 has quit IRC17:25
CIA-83hannosch * r121594 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Avoid storing `_t` representing the time as a float in seconds since the epoch, as we already have `_micros` doing the same as a long. Memory use is down to about 300 bytes per DateTime instance.17:26
CIA-83hannosch * r121595 DateTime/src/DateTime/DateTime.py: Explain why we store a float, instead of directly taking the _micros long -> 10 bytes less in the common case :)17:26
*** ccomb has joined #zope17:29
*** ccomb has quit IRC17:38
CIA-83hannosch * r121596 DateTime/ (3 files in 3 dirs): Added back support for reading old DateTime pickles without a `_micros` value.18:23
CIA-83hannosch * r121597 Products.CMFDefault/Products/CMFDefault/ (4 files in 2 dirs): Revert c121570, DateTime got back support for `_micro`-less pickles18:23
CIA-83hannosch * r121598 DateTime/ (CHANGES.txt setup.py): Prepare DateTime 3.0a2.18:23
CIA-83hannosch * r121599 /DateTime/tags/3.0a2: Tagged DateTime 3.0a2.18:23
CIA-83hannosch * r121600 DateTime/ (CHANGES.txt setup.py): vb18:23
CIA-83hannosch * r121601 Zope/ (doc/CHANGES.rst versions.cfg): DateTime = 3.0a218:23
CIA-83hannosch * r121602 Zope/src/ZPublisher/xmlrpc.py: Retain support for marhalling DateTime objects via xmlrpc18:23
*** srichter has joined #zope18:41
*** davisagli has joined #zope18:58
*** davisagli has quit IRC19:20
*** davisagli has joined #zope19:21
koshwell it looks like DataTime is going to get much smaller then before19:22
koshthat will definitely help my apps19:22
CIA-83hannosch * r121603 Products.CMFCalendar/Products/CMFCalendar/ (CHANGES.txt tests/test_Event.py): Fixed tests to be compatibility with DateTime 3.19:40
CIA-83hannosch * r121604 DateTime/ (CHANGES.txt src/DateTime/tests/testDateTime.py): Added tests for read-only class attributes and interface.19:40
CIA-83hannosch * r121605 DateTime/ (CHANGES.txt src/DateTime/DateTime.py): Restored `strftimeFormatter` as a class.19:40
CIA-83hannosch * r121606 Zope/src/ (3 files in 3 dirs): Some cleanup and fixes for changed DateTime.SyntaxError import location19:40
*** srichter has quit IRC19:46
*** jham has quit IRC19:47
*** srichter has joined #zope19:47
*** lynucs has joined #zope19:48
*** lynucs has quit IRC19:55
*** kleist_ has joined #zope19:55
*** kleist has quit IRC19:58
*** kleist_ has quit IRC20:14
*** River-Rat is now known as RiverRat20:16
CIA-83hannosch * r121607 Products.PluggableAuthService/ (2 files in 2 dirs): Added forward compatibility with DateTime 3.20:27
CIA-83hannosch * r121608 DateTime/ (CHANGES.txt setup.py): Prepare DateTime 3.0b1.20:27
CIA-83hannosch * r121609 /DateTime/tags/3.0b1: Tagged DateTime 3.0b1.20:27
CIA-83hannosch * r121610 DateTime/ (CHANGES.txt setup.py): vb20:27
CIA-83hannosch * r121611 Zope/ (doc/CHANGES.rst versions.cfg): DateTime = 3.0b120:27
CIA-83hannosch 2.2 * r121612 Products.CMFCalendar/Products/CMFCalendar/ (tests/test_Event.py CHANGES.txt): Backport c121603 from trunk20:27
CIA-83hannosch 2.2 * r121613 Products.CMFTopic/Products/CMFTopic/ (tests/test_exportimport.py CHANGES.txt): Backported c121571 from trunk20:27
CIA-83d2m * r121614 zopeorg.buildout/ (bootstrap.py buildout.cfg README.txt dev.cfg): initial import from github20:27
CIA-83d2m * r121615 zopeorg.plonetheme/ (83 files in 16 dirs): initial import from github20:27
CIA-83d2m * r121616 zopeorg.buildout/ (buildout.cfg dev.cfg): adjust buildout20:27
CIA-83hannosch 2.13 * r121617 Zope/ (5 files in 4 dirs): Added forward compatibility with DateTime 3 by backporting c121602 and c121606 from trunk20:27
CIA-83hannosch 2.12 * r121618 Zope/ (doc/CHANGES.rst versions.cfg setup.py): Prepare Zope2 2.12.18.20:27
CIA-83hannosch * r121619 /Zope/tags/2.12.18: Tagged Zope2 2.12.18.20:27
CIA-83hannosch 2.12 * r121620 Zope/ (doc/CHANGES.rst versions.cfg setup.py): vb20:27
*** morphex has quit IRC20:51
*** shastry has joined #zope20:58
*** mr_jolly has left #zope21:03
*** m8 has joined #zope21:04
*** markvandenborre has quit IRC21:09
*** markvandenborre has joined #zope21:09
*** Arfrever has joined #zope21:19
*** srichter has quit IRC21:26
CIA-83hannosch 2.13 * r121621 Zope/ (doc/CHANGES.rst versions.cfg setup.py): Prepare Zope2 2.13.7.21:31
CIA-83hannosch * r121622 /Zope/tags/2.13.7: Tagged Zope2 2.13.7.21:31
CIA-83hannosch 2.13 * r121623 Zope/ (doc/CHANGES.rst versions.cfg setup.py): vb21:31
CIA-83hannosch * r121624 zope2docs/releases: New bugfix releases21:31
CIA-83d2m * r121625 /branches: remove folder, was created by wrong import21:31
CIA-83d2m * r121626 /tags: remove folder, was created by wrong import21:31
CIA-83d2m * r121627 /trunk: remove folder, was created by wrong import21:31
CIA-83d2m * r121628 /zopeorg.plonetheme: remove folder, was created by wrong import21:31
*** alga has joined #zope21:37
*** lynucs has joined #zope21:37
*** lynucs has joined #zope21:37
*** lynucs is now known as jham21:51
*** slackrunner has quit IRC22:05
*** slackrunner_ has joined #zope22:05
*** m8 has quit IRC22:11
*** jham has quit IRC22:16
*** lynucs has joined #zope22:17
*** lynucs is now known as jham22:18
*** slackrunner has joined #zope23:05
*** slackrunner has quit IRC23:06
*** slackrunner_ has quit IRC23:07
*** slackrunner has joined #zope23:08
*** __mac__ has joined #zope23:10
*** __mac__ has quit IRC23:12
*** dayne1 has quit IRC23:26
*** dayne has joined #zope23:27
CIA-83jim * r121629 ZODB/src/BTrees/ (SetOpTemplate.c MergeTemplate.c): Reindented.23:48

Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!