*** m8 has quit IRC | 00:00 | |
*** goschtl has joined #zope | 00:00 | |
*** Guest69539 has quit IRC | 00:02 | |
*** sashav has quit IRC | 00:02 | |
*** zenwryly has quit IRC | 00:04 | |
*** fredvd|cooking has quit IRC | 00:05 | |
*** zenwryly has joined #zope | 00:11 | |
*** lucmult has joined #zope | 00:12 | |
davisagli | TresEquis: what's this picklecache branch? getting rid of ZODB's dependence on CPython? | 00:16 |
---|---|---|
TresEquis | yup | 00:16 |
davisagli | nifty | 00:16 |
TresEquis | trying to, anyway | 00:16 |
TresEquis | I *think* that there is enough support for trickery now to make the C bits an optimization | 00:16 |
TresEquis | given __slots__, weakrefs, etc. | 00:17 |
TresEquis | I already reimplemented the picklecache | 00:17 |
TresEquis | working on the Persistent base class now | 00:18 |
davisagli | right, seems like it's worth a try at least | 00:20 |
TresEquis | I'm about to get to the place where I try to bring the two together | 00:21 |
TresEquis | like the transcontinental railroad | 00:21 |
TresEquis | I just hope the two lines are at least in the same county ;) | 00:21 |
davisagli | :) | 00:21 |
TresEquis | I might even get the RAM footprint down | 00:22 |
davisagli | how? slots? | 00:22 |
*** goschtl has quit IRC | 00:24 | |
*** alga has joined #zope | 00:26 | |
*** lucmult has quit IRC | 00:28 | |
*** lucmult has joined #zope | 00:29 | |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120358 ZODB/src/persistent/ (pypersistent.py tests/test_pypersistent.py): Add more methods from the C class. | 00:30 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120359 ZODB/src/persistent/ (interfaces.py pypersistent.py): Document additional methods / attributes as part of IPersistent. | 00:30 |
*** goschtl has joined #zope | 00:34 | |
*** mr_jolly has left #zope | 00:42 | |
*** lucmult has quit IRC | 00:44 | |
*** lucmult has joined #zope | 00:45 | |
*** redir has joined #zope | 00:47 | |
*** goschtl has quit IRC | 00:47 | |
*** BGaddie is now known as BGaddie|away | 00:53 | |
*** lucmult has quit IRC | 01:01 | |
*** MrTango has quit IRC | 01:01 | |
*** lucmult has joined #zope | 01:02 | |
*** mr_jolly has joined #zope | 01:18 | |
*** supton has joined #zope | 01:28 | |
*** FSCV has quit IRC | 01:28 | |
*** jan_s has quit IRC | 01:29 | |
*** FSCV has joined #zope | 01:32 | |
*** mr_jolly has left #zope | 01:36 | |
*** lucmult has quit IRC | 01:37 | |
*** lucmult has joined #zope | 01:38 | |
*** lucmult has quit IRC | 01:54 | |
*** lucmult has joined #zope | 01:57 | |
*** fredvd has joined #zope | 02:06 | |
*** Arfrever has quit IRC | 02:08 | |
TresEquis | davisagli, yes, slots | 02:09 |
TresEquis | plus, I'm going to break the cycle between persistent objects and their jar's cache | 02:09 |
*** lucmult has quit IRC | 02:10 | |
TresEquis | right now, the base class uses only four slots | 02:10 |
*** fredvd has quit IRC | 02:10 | |
TresEquis | so the only extra overhead is 4 * sizeof(void*) | 02:11 |
*** lucmult has joined #zope | 02:11 | |
*** TresEquis has quit IRC | 02:13 | |
*** dvschramm is now known as dvschramm|away | 02:24 | |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120360 ZODB/src/ZODB/ (Connection.py tests/testConnection.py interfaces.py): Define IConnectionPrivate interface for use by Persistent. | 02:27 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120361 ZODB/src/persistent/ (interfaces.py pypersistent.py tests/test_pypersistent.py): Add attribute access / mutation protocol. | 02:27 |
*** dayne has quit IRC | 02:32 | |
*** J1m_ has quit IRC | 02:37 | |
*** supton has quit IRC | 02:38 | |
*** lucmult has quit IRC | 02:43 | |
*** srichter has quit IRC | 03:03 | |
*** FSCV has quit IRC | 03:04 | |
*** lucmult has joined #zope | 03:05 | |
*** srichter has joined #zope | 03:12 | |
*** alvaro_o has quit IRC | 03:16 | |
*** jim_SFU has joined #zope | 03:43 | |
*** tiwula has quit IRC | 04:14 | |
*** jim_SFU has quit IRC | 04:19 | |
*** webmaven has joined #zope | 04:38 | |
*** davisagli has quit IRC | 05:06 | |
*** NotreDev has quit IRC | 05:06 | |
*** davisagli has joined #zope | 05:06 | |
*** webmaven has quit IRC | 05:18 | |
*** srichter has quit IRC | 05:31 | |
*** srichter has joined #zope | 05:34 | |
*** srichter has quit IRC | 05:42 | |
*** supton has joined #zope | 06:23 | |
*** supton has quit IRC | 06:57 | |
*** supton has joined #zope | 07:00 | |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120362 ZODB/src/persistent/ (5 files in 2 dirs): | 07:23 |
CIA-85 | Rename 'pypersistent' -> 'pyPersistence' to fit the pattern expected by | 07:23 |
CIA-85 | conditionl imports. | 07:23 |
CIA-85 | Move the state flags into the interfaces module to avoid cycle (they | 07:23 |
CIA-85 | are part of the API, anyway). | 07:23 |
CIA-85 | Fix __setattr__ / __delattr__ semantics as revealed by other tests. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120363 ZODB/src/persistent/ (picklecache.py tests/test_picklecache.py): Add a previously-ghosted object to the ring during mru(). | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120364 ZODB/src/persistent/tests/test_persistent.py: Make test for 'simple_new' conditional. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120365 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): | 07:23 |
CIA-85 | Clear dict during invalidation, if present. | 07:23 |
CIA-85 | Also, allow deleting _p_serial. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120366 ZODB/src/persistent/tests/utils.py: Ensure that the dummy jar provides IPersistentDataManager. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120367 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Return expected all-zeros value when _p_serial not set. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120368 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Allow deleting _p_oid only if None. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120369 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Allow deleting _p_oid only if jar is None. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120370 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Fix reduce to match expectations in C module. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120371 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Extend __getstate__ / __setstate__ for common case of subclass w/ dict. | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120372 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Don't return _p_ or _v_ attrs from __getstate__ . | 07:23 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120373 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Enforce 8-octet requirement for _p_serial. | 07:23 |
*** zagy1 has joined #zope | 07:43 | |
*** __mac__ has joined #zope | 07:43 | |
*** zagy1 has quit IRC | 07:44 | |
*** __mac__ has quit IRC | 07:46 | |
*** prank has quit IRC | 07:48 | |
*** shastry has joined #zope | 07:49 | |
*** shastry_ has quit IRC | 07:51 | |
*** supton has quit IRC | 08:05 | |
*** wosc has joined #zope | 08:59 | |
*** __mac__ has joined #zope | 09:04 | |
*** Theuni has joined #zope | 09:05 | |
*** Theuni is now known as Guest54121 | 09:06 | |
*** zagy1 has joined #zope | 09:06 | |
*** Guest54121 has quit IRC | 09:24 | |
*** bigkevmcd has joined #zope | 09:33 | |
*** Deichi has joined #zope | 09:39 | |
*** goschtl has joined #zope | 09:40 | |
*** mlechner has joined #zope | 09:51 | |
*** MrTango has joined #zope | 09:51 | |
*** tisto has joined #zope | 09:51 | |
*** prinzdezibel has joined #zope | 09:53 | |
mlechner | hi, what dooes the "Transaction isolation level" of a "z psycopg 2" connection mean in practice? | 09:54 |
*** ccomb has joined #zope | 09:54 | |
*** Theuni has joined #zope | 09:56 | |
*** Theuni is now known as Guest43756 | 09:56 | |
*** hever has joined #zope | 10:02 | |
*** bigkevmcd has quit IRC | 10:05 | |
*** hever has quit IRC | 10:06 | |
*** hever has joined #zope | 10:08 | |
*** bigkevmcd has joined #zope | 10:08 | |
*** eperez has joined #zope | 10:15 | |
*** alexpilz has joined #zope | 10:31 | |
*** planetzopebot has quit IRC | 10:33 | |
*** planetzopebot has joined #zope | 10:34 | |
*** rogererens has joined #zope | 10:39 | |
*** rogererens has quit IRC | 10:39 | |
*** alexpilz1 has joined #zope | 10:40 | |
*** alexpilz has quit IRC | 10:42 | |
*** ccomb has quit IRC | 10:50 | |
*** sylvain__ has joined #zope | 10:53 | |
*** sylvain__ is now known as sylvain | 10:55 | |
*** hever has quit IRC | 11:21 | |
*** eperez has quit IRC | 11:24 | |
*** evilbungle has joined #zope | 11:29 | |
*** River_Rat has joined #zope | 11:30 | |
*** nitrogenycs has joined #zope | 11:31 | |
*** hever has joined #zope | 11:33 | |
*** River-Rat has quit IRC | 11:33 | |
*** agroszer has joined #zope | 11:38 | |
*** mr_jolly has joined #zope | 11:39 | |
*** d2m has joined #zope | 11:40 | |
d2m | hi all, anyone using zope.org anymore? | 11:42 |
betabug | d2m: used it 2 days ago to d/l the latest of the 2.10 series | 11:43 |
betabug | hahaha, no way | 11:43 |
betabug | ups, err# on the last one | 11:43 |
d2m | it feels pretty useless these days, timeouts at login et al. | 11:43 |
betabug | I'm not logging in | 11:43 |
d2m | could be the only way to use it in the moment | 11:43 |
betabug | I haven't logged in in something like 5 years | 11:44 |
betabug | d2m: you're thinking of switching it off (or switching it over to zope2.zope.org)? | 11:44 |
d2m | as you might now we are in the process to replace it with a new front, a hub site that gets you links to all single websites that feature the different aspects of zope | 11:45 |
*** purserj_ has quit IRC | 11:47 | |
betabug | yeah, but that description is valid for a few years now IIRC :-) | 11:47 |
*** purserj has joined #zope | 11:47 | |
d2m | people interested in adding some texts to the hub pages please contact me or webmaster@zope.org | 11:47 |
*** eperez has joined #zope | 11:56 | |
*** hever has quit IRC | 12:06 | |
*** astoon has joined #zope | 12:08 | |
betabug | d2m: I guess I can't contribute much, except some historical value from the sidelines | 12:16 |
betabug | all the "modern" stuff has passed me by :-) | 12:16 |
*** mlechner has quit IRC | 12:18 | |
*** srichter has joined #zope | 12:31 | |
*** hariom has joined #zope | 12:40 | |
hariom | Hi, I am fetching some values from database via zsql script and showing it on a page. In zmi, I see that zsql script runs fine and returns values. When I run the page, I get TraversalError on a particular field value fetched from the database. What could be the reason? | 12:42 |
betabug | hariom: put the full traceback on a pastebin, maybe someone can see what's wrong | 12:45 |
betabug | modern zopes show all kind of stuff as TraversalError and the real problem is hidden in the traceback | 12:46 |
*** prank has joined #zope | 12:47 | |
*** fredvd has joined #zope | 12:50 | |
CIA-85 | icemac * r120374 zope.testrunner/buildout.cfg: | 12:55 |
CIA-85 | - added testing support for Python 2.7 | 12:55 |
CIA-85 | - using the test extra for version tests because zope.testing is needed by the tests | 12:55 |
CIA-85 | icemac * r120375 /zope.testrunner/branches/icemac-lp-719369: added branch to handle unexpected successes | 12:55 |
CIA-85 | icemac icemac-lp-719369 * r120376 zope.testrunner/ (6 files in 3 dirs): An `Unexpected success` (concept intruduced in Python 2.7) is no longer handled as success but as failure. This is a workaround. The whole unexpected success concept might be implemented later. | 12:55 |
*** astoon has quit IRC | 13:18 | |
*** hever has joined #zope | 13:19 | |
hariom | I get error if I write this: http://pastebin.com/MBvkjPAL and the error is: missing FROM-clause entry for table "rt" LINE 16: rt.num_seats | 13:19 |
hariom | If I remove <dtml-if ...> clause from join on table1.ring_tables I get no errors. Why is it so? | 13:21 |
hariom | betabug: | 13:21 |
betabug | can't help you myself, I don't use sql with zope | 13:21 |
*** lucmult1 has joined #zope | 13:22 | |
*** lucmult has quit IRC | 13:22 | |
nitrogenycs | hariom: you seem to have an extra comma after num_seats, not sure if that's a problem | 13:23 |
hariom | nitrogenycs: that was my typo. There is no extra comma. | 13:25 |
*** astoon has joined #zope | 13:29 | |
hariom | anybody ? | 13:29 |
*** astoon has quit IRC | 13:31 | |
*** prinzdezibel has quit IRC | 13:32 | |
hariom | Can I place <dtml-if expr= ... > clause anywhere in zsql? | 13:33 |
*** tisto has quit IRC | 13:33 | |
*** tisto has joined #zope | 13:37 | |
CIA-85 | adamg * r120377 keas.build/ (buildout.cfg CHANGES.txt): Bump versions to ZTK 1.1 | 13:38 |
*** prinzdezibel has joined #zope | 13:43 | |
*** sunew has joined #zope | 13:46 | |
*** astoon has joined #zope | 13:50 | |
*** dayne has joined #zope | 14:28 | |
*** strichter has joined #zope | 14:29 | |
*** srichter has quit IRC | 14:30 | |
CIA-85 | adamg * r120378 keas.build/ (3 files in 2 dirs): Improvement: add SVN repo infos to the project config file. | 14:36 |
*** hariom has left #zope | 14:42 | |
*** sashav has joined #zope | 14:54 | |
*** eperez has quit IRC | 15:15 | |
*** avn_ is now known as avn | 15:23 | |
*** sunew has quit IRC | 15:24 | |
CIA-85 | adamg * r120379 keas.build/src/keas/build/package.py: fix my error | 15:27 |
*** sunew has joined #zope | 15:29 | |
*** menesis has joined #zope | 15:29 | |
*** FSCV has joined #zope | 15:32 | |
*** menesis has quit IRC | 15:39 | |
*** f10w has quit IRC | 15:41 | |
*** menesis1 has joined #zope | 15:41 | |
*** menesis1 is now known as menesis | 15:42 | |
*** f10w has joined #zope | 15:43 | |
*** strichter has quit IRC | 15:44 | |
*** Ariel_Calzada has joined #zope | 15:44 | |
*** bowe has joined #zope | 15:46 | |
*** prinzdezibel has quit IRC | 15:47 | |
*** fredvd has quit IRC | 15:50 | |
*** fredvd has joined #zope | 15:51 | |
*** thetet has joined #zope | 15:54 | |
*** prinzdezibel has joined #zope | 15:59 | |
*** fredvd|away has joined #zope | 15:59 | |
*** J1m_ has joined #zope | 16:00 | |
*** fredvd has quit IRC | 16:03 | |
*** strichter has joined #zope | 16:04 | |
*** BGaddie|away is now known as BGaddie | 16:05 | |
*** menesis has quit IRC | 16:07 | |
*** menesis1 has joined #zope | 16:07 | |
*** menesis1 is now known as menesis | 16:07 | |
*** fredvd|away is now known as fredvd | 16:08 | |
*** astoon has quit IRC | 16:13 | |
*** wosc has quit IRC | 16:16 | |
*** digitalmortician has quit IRC | 16:21 | |
*** digitalmortician has joined #zope | 16:21 | |
*** jim_SFU has joined #zope | 16:26 | |
CIA-85 | adamg * r120380 keas.build/src/keas/build/build.py: add info to log too | 16:35 |
CIA-85 | adamg * r120381 keas.build/src/keas/build/build.py: switch processing order | 16:35 |
*** eperez has joined #zope | 16:36 | |
*** dayne has quit IRC | 16:36 | |
*** menesis has quit IRC | 16:38 | |
*** d2m has quit IRC | 16:44 | |
*** zenwryly has quit IRC | 16:46 | |
*** hever has quit IRC | 16:46 | |
*** d2m has joined #zope | 16:47 | |
*** prank has quit IRC | 16:48 | |
*** prank has joined #zope | 16:49 | |
*** menesis has joined #zope | 16:52 | |
*** prank has quit IRC | 16:56 | |
*** hever has joined #zope | 16:57 | |
*** FSCV has quit IRC | 16:58 | |
*** menesis has quit IRC | 17:02 | |
*** menesis has joined #zope | 17:02 | |
*** sm has joined #zope | 17:04 | |
*** jbg has joined #zope | 17:08 | |
*** dvschramm|away is now known as dvschramm | 17:09 | |
*** sm has left #zope | 17:09 | |
*** jim_SFU has quit IRC | 17:12 | |
*** jbg is now known as jim_SFU | 17:12 | |
*** dayne has joined #zope | 17:13 | |
*** menesis has quit IRC | 17:13 | |
*** menesis has joined #zope | 17:15 | |
*** prank has joined #zope | 17:18 | |
*** alexpilz1 has quit IRC | 17:20 | |
*** menesis has quit IRC | 17:20 | |
CIA-85 | yuppie * r120382 Products.CMFDefault/Products/CMFDefault/tests/test_DiscussionReply.py: - don't use has_permission for permission checks | 17:23 |
*** bowe has quit IRC | 17:31 | |
*** tisto has quit IRC | 17:37 | |
*** dayne has quit IRC | 17:39 | |
*** jim_SFU has quit IRC | 17:40 | |
*** nitrogenycs has quit IRC | 17:40 | |
*** jim_SFU has joined #zope | 17:40 | |
*** dayne has joined #zope | 17:44 | |
*** daMaestro has joined #zope | 17:51 | |
*** tiwula has joined #zope | 17:56 | |
*** Guest43756 has quit IRC | 17:59 | |
*** FSCV has joined #zope | 17:59 | |
*** sunew has quit IRC | 18:02 | |
*** __mac__ has quit IRC | 18:06 | |
*** supton has joined #zope | 18:07 | |
*** Deichi has quit IRC | 18:07 | |
*** goschtl has quit IRC | 18:15 | |
*** alvaro_o has joined #zope | 18:23 | |
CIA-85 | tlotze * r120383 zc.buildout/src/zc/buildout/download.py: updated the docstring of the download utility | 18:25 |
CIA-85 | yuppie * r120384 Products.CMFDefault/Products/CMFDefault/browser/membership/tests/test_members.py: - import cleanup | 18:25 |
CIA-85 | yuppie * r120385 Products.CMFDefault/Products/CMFDefault/browser/membership/ (members.py tests/test_members.py): - fixed home url lookup | 18:25 |
CIA-85 | tlotze * r120386 zc.buildout/ (3 files in 2 dirs): made sure to download extended configuration files only once per buildout run (based on patch by Rafael Monnerat) | 18:25 |
CIA-85 | tseaver * r120387 zope.copypastemove/setup.py: Fix misspelled dependency. | 18:25 |
CIA-85 | yuppie * r120388 Products.CMFCalendar/Products/CMFCalendar/tests/test_Calendar.py: - test with correctly wrapped user | 18:25 |
*** mcdonc has quit IRC | 18:26 | |
*** sylvain has quit IRC | 18:27 | |
*** mcdonc has joined #zope | 18:28 | |
*** nitrogenycs has joined #zope | 18:35 | |
*** agroszer has quit IRC | 18:43 | |
*** alvaro_o has quit IRC | 18:57 | |
*** alvaro_o has joined #zope | 18:58 | |
*** thetet has quit IRC | 18:58 | |
*** d2m has quit IRC | 18:59 | |
*** alvaro_o has quit IRC | 19:02 | |
*** runyaga has joined #zope | 19:02 | |
*** runyaga has quit IRC | 19:02 | |
*** runyaga has joined #zope | 19:02 | |
*** alvaro_o has joined #zope | 19:03 | |
*** NotreDev has joined #zope | 19:07 | |
*** alvaro_o has quit IRC | 19:11 | |
*** alvaro_o has joined #zope | 19:12 | |
*** d2m has joined #zope | 19:13 | |
*** thetet has joined #zope | 19:14 | |
*** fredvd has quit IRC | 19:15 | |
*** zagy1 has quit IRC | 19:16 | |
*** Arfrever has joined #zope | 19:20 | |
*** alvaro_o has quit IRC | 19:25 | |
*** alvaro_o has joined #zope | 19:26 | |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120389 ZODB/src/ (4 files in 3 dirs): | 19:28 |
CIA-85 | Back out IConnectionPrivate. | 19:28 |
CIA-85 | Add the '_cache' attribute to IPersistentDataManager instead. | 19:28 |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120390 ZODB/src/persistent/ (pyPersistence.py tests/test_pyPersistence.py): Use portable spelling for generating OIDs / serials from literals. | 19:28 |
*** evilbungle_ has joined #zope | 19:33 | |
*** evilbungle_ has quit IRC | 19:33 | |
*** evilbungle has quit IRC | 19:35 | |
*** FSCV has quit IRC | 19:39 | |
*** FSCV has joined #zope | 19:45 | |
*** _mup_ has quit IRC | 19:47 | |
*** _mup_ has joined #zope | 19:47 | |
*** alvaro_o has quit IRC | 19:48 | |
*** alvaro_o has joined #zope | 19:48 | |
*** alvaro_o has quit IRC | 19:51 | |
*** alvaro_o has joined #zope | 19:52 | |
*** m8 has joined #zope | 19:52 | |
*** alvaro_o has quit IRC | 19:56 | |
*** prinzdezibel has quit IRC | 19:56 | |
*** thetet has quit IRC | 19:56 | |
*** MrWu has joined #zope | 19:56 | |
*** evilbungle has joined #zope | 19:56 | |
*** alvaro_o has joined #zope | 19:56 | |
*** alvaro_o has quit IRC | 19:59 | |
*** alvaro_o has joined #zope | 19:59 | |
*** cpf_ has joined #zope | 20:02 | |
*** alvaro_o has quit IRC | 20:05 | |
*** NotreDev has quit IRC | 20:06 | |
*** MrWu has quit IRC | 20:06 | |
*** alvaro_o has joined #zope | 20:06 | |
*** NotreDev has joined #zope | 20:06 | |
*** NotreDev has quit IRC | 20:07 | |
*** NotreDev has joined #zope | 20:07 | |
*** lucmult1 has quit IRC | 20:08 | |
*** alvaro_o has quit IRC | 20:10 | |
*** alvaro_o has joined #zope | 20:10 | |
*** lucmult has joined #zope | 20:12 | |
*** benji has quit IRC | 20:16 | |
*** benji has joined #zope | 20:20 | |
*** eperez has quit IRC | 20:20 | |
*** d2m has quit IRC | 20:26 | |
*** d2m has joined #zope | 20:26 | |
*** cpf_ has quit IRC | 20:31 | |
CIA-85 | tseaver tseaver-python_picklecache-2 * r120391 ZODB/src/persistent/ (timestamp.py tests/test_timestamp.py): Add pure-Python timestamp fallback. | 20:31 |
*** lucmult has left #zope | 20:36 | |
*** bigkevmcd has quit IRC | 20:51 | |
*** zenwryly has joined #zope | 20:54 | |
*** cpf_ has joined #zope | 20:57 | |
*** cpf_ has quit IRC | 21:03 | |
*** prinzdezibel has joined #zope | 21:06 | |
*** zagy has joined #zope | 21:08 | |
*** Spanktar has joined #zope | 21:13 | |
*** shastry has quit IRC | 21:18 | |
*** zenwryly has quit IRC | 21:27 | |
*** zenwryly has joined #zope | 21:27 | |
*** strichter has quit IRC | 21:30 | |
*** alvaro_o has quit IRC | 21:31 | |
*** alvaro_o has joined #zope | 21:32 | |
*** NotreDev has quit IRC | 21:42 | |
*** NotreDev has joined #zope | 21:42 | |
*** prinzdezibel has quit IRC | 21:46 | |
*** NotreDev_ has joined #zope | 21:56 | |
*** hever has quit IRC | 21:56 | |
*** NotreDev has quit IRC | 21:58 | |
*** NotreDev_ is now known as NotreDev | 21:58 | |
*** nitrogenycs has left #zope | 22:17 | |
*** bowe has joined #zope | 22:51 | |
*** ccomb has joined #zope | 22:55 | |
*** hever has joined #zope | 23:11 | |
*** zagy has quit IRC | 23:24 | |
*** ccomb has quit IRC | 23:37 | |
*** cpf_ has joined #zope | 23:42 | |
*** daMaestro has quit IRC | 23:51 | |
*** daMaestro has joined #zope | 23:51 | |
*** _mup_ has quit IRC | 23:55 | |
*** _mup_ has joined #zope | 23:55 |
Generated by irclog2html.py 2.15.1 by Marius Gedminas - find it at mg.pov.lt!