Ticket #329: optimizations.txt

File optimizations.txt, 22.3 KB (added by kevan, at 2009-07-04T04:00:08Z)

changing dirnode.py to use CachingDict?

Line 
1Fri Jul  3 20:43:01 PDT 2009  kevan@isnotajoke.com
2  * Use CachingDict instead of dict in dirnode.py
3
4New patches:
5
6[Use CachingDict instead of dict in dirnode.py
7kevan@isnotajoke.com**20090704034301
8 Ignore-this: 53f12260176a5170b3599eda54f38e98
9] {
10hunk ./src/allmydata/dirnode.py 156
11         # first we create a MutableFileNode with empty_contents, then use its
12         # URI to create our own.
13         self._node = self.filenode_class(self._client)
14-        empty_contents = self._pack_contents({})
15+        empty_contents = self._pack_contents(CachingDict())
16         d = self._node.create(empty_contents, keypair_generator, keysize=keysize)
17         d.addCallback(self._filenode_created)
18         return d
19hunk ./src/allmydata/dirnode.py 210
20         assert isinstance(data, str)
21         # an empty directory is serialized as an empty string
22         if data == "":
23-            return {}
24+            return CachingDict()
25         writeable = not self.is_readonly()
26hunk ./src/allmydata/dirnode.py 212
27-        children = {}
28+        children = CachingDict()
29         while len(data) > 0:
30             entry, data = split_netstring(data, 1, True)
31             name, rocap, rwcapdata, metadata_s = split_netstring(entry, 4)
32hunk ./src/allmydata/dirnode.py 227
33             child = self._create_node(rwcap, rocap)
34             metadata = simplejson.loads(metadata_s)
35             assert isinstance(metadata, dict)
36-            children[name] = (child, metadata)
37+            children.set_both_items(name, entry, (child, metadata))
38         return children
39 
40     def _pack_contents(self, children):
41hunk ./src/allmydata/dirnode.py 232
42         # expects children in the same format as _unpack_contents
43-        assert isinstance(children, dict)
44+        assert isinstance(children, CachingDict)
45         entries = []
46         for name in sorted(children.keys()):
47hunk ./src/allmydata/dirnode.py 235
48-            child, metadata = children[name]
49-            assert isinstance(name, unicode)
50-            assert IFilesystemNode.providedBy(child), (name,child)
51-            assert isinstance(metadata, dict)
52-            rwcap = child.get_uri() # might be RO if the child is not writeable
53-            if rwcap is None:
54-                rwcap = ""
55-            assert isinstance(rwcap, str), rwcap
56-            rocap = child.get_readonly_uri()
57-            if rocap is None:
58-                rocap = ""
59-            assert isinstance(rocap, str), rocap
60-            entry = "".join([netstring(name.encode("utf-8")),
61+            entry, metadata = children.get_both_items(name)
62+            if entry == None:
63+                child, metadata = metadata
64+                assert isinstance(name, unicode)
65+                assert IFilesystemNode.providedBy(child), (name,child)
66+                assert isinstance(metadata, dict)
67+                rwcap = child.get_uri() # might be RO if the child is not writeable
68+                if rwcap is None:
69+                    rwcap = ""
70+                assert isinstance(rwcap, str), rwcap
71+                rocap = child.get_readonly_uri()
72+                if rocap is None:
73+                    rocap = ""
74+                assert isinstance(rocap, str), rocap
75+                entry = "".join([netstring(name.encode("utf-8")),
76                              netstring(rocap),
77                              netstring(self._encrypt_rwcap(rwcap)),
78                              netstring(simplejson.dumps(metadata))])
79}
80
81Context:
82
83[setup: the mac-exe build (using py2app) requires macholib>=1.2.
84zooko@zooko.com**20090703175702
85 Ignore-this: ea489a5076f2c9f20f6bfd2807cc5680
86 Here is someone else's description of this problem:
87 http://rtmpy.org/ticket/7
88]
89[clean up debian packaging: we have control files for etch/lenny/sid, and
90"Brian Warner <warner@lothar.com>"**20090703072804
91 everything else uses one of those. Add dependency on python-pysqlite2 for
92 platforms that use py2.4 by default. Update foolscap dependency to 0.4.1.
93]
94[update NEWS to cover all recent changes, sort by end-user importance
95Brian Warner <warner@lothar.com>**20090703014303
96 Ignore-this: 6ddac78075d7547a19712d505818949c
97]
98[Tolerate unknown URI types in directory structures. Part of #683.
99Brian Warner <warner@lothar.com>**20090703010749
100 Ignore-this: afd0e15e2e39d3b87743ec7ccd87054d
101 
102 The idea is that future versions of Tahoe will add new URI types that this
103 version won't recognize, but might store them in directories that we *can*
104 read. We should handle these "objects from the future" as best we can.
105 Previous releases of Tahoe would just explode. With this change, we'll
106 continue to be able to work with everything else in the directory.
107 
108 The code change is to wrap anything we don't recognize as an UnknownNode
109 instance (as opposed to a FileNode or DirectoryNode). Then webapi knows how
110 to render these (mostly by leaving fields blank), deep-check knows to skip
111 over them, deep-stats counts them in "count-unknown". You can rename and
112 delete these things, but you can't add new ones (because we wouldn't know how
113 to generate a readcap to put into the dirnode's rocap slot, and because this
114 lets us catch typos better).
115]
116[test_client.py: minor refactoring of BASECONFIG usage
117Brian Warner <warner@lothar.com>**20090703005450
118 Ignore-this: bf19b9ae7edeab293068cce2368f9364
119]
120[create_node_from_uri: take both writecap+readcap, move logic out of dirnode.py
121Brian Warner <warner@lothar.com>**20090702222537
122 Ignore-this: 93051498076e90d3f1dc85161ce8247a
123]
124[dirnode.py: prepare to preserve both rwcap+rocap when copying
125Brian Warner <warner@lothar.com>**20090702211254
126 Ignore-this: f128c02da32f86d7e39527a35dfc2e02
127 
128 This will make it easier to tolerate unknown nodes safely.
129]
130[interfaces.py: wrap some lines to 80cols
131Brian Warner <warner@lothar.com>**20090702015728
132 Ignore-this: e2c777c1e89a684b43ceabeb0042456c
133]
134[cli: webopen: when called with no arguments, open the Welcome page
135Brian Warner <warner@lothar.com>**20090701200548
136 Ignore-this: ae7d6cb42165d0c751926065378343dd
137]
138[mutable repairer: skip repair of readcaps instead of throwing an exception.
139Brian Warner <warner@lothar.com>**20090701011343
140 Ignore-this: 2c24493426cdc1db8f0e3815ee2c5f87
141 This should improve the behavior of #625 a bit: at least all the files will
142 get repaired.
143]
144[interfaces.py: improve ICheckAndRepairResults docs a bit
145Brian Warner <warner@lothar.com>**20090701001925
146 Ignore-this: 3a57acfee3487c1e071e135743e42c2a
147]
148[repairer.py: wrap to 80cols. No code changes.
149Brian Warner <warner@lothar.com>**20090701000047
150 Ignore-this: 4a84ac95a849be0656d362882876082a
151]
152[setup: require pycryptopp>=0.5.14 if on Windows and with Python>=2.6
153zooko@zooko.com**20090630184807
154 Ignore-this: f7e9beeb5d5613a7c0ffed14d1dda3c6
155]
156[edit NEWS
157Brian Warner <warner@lothar.com>**20090630174115
158 Ignore-this: c4461a2304fcd45bee95e11418693a18
159]
160[NEWS: list all user-visible changes since 1.4.1 . Needs lots of editing.
161Brian Warner <warner@lothar.com>**20090630170734
162 Ignore-this: f606a5d678d0db8065b9f84e796d59b0
163]
164[* find-trailing-spaces.py: exit rc=1 if whitespace found, to be a pre-commit hook
165Brian Warner <warner@lothar.com>**20090629224658
166 Ignore-this: 1465becc923ee04d170e5ee791cf605e
167]
168[use 522-bit RSA keys in all unit tests (except one)
169Brian Warner <warner@lothar.com>**20090629223124
170 Ignore-this: 7a4c3685683ff9da5ceb2d8cb7b19b7
171 
172 This reduces the total test time on my laptop from 400s to 283s.
173 * src/allmydata/test/test_system.py (SystemTest.test_mutable._test_debug):
174   Remove assertion about container_size/data_size, this changes with keysize
175   and was too variable anyways.
176 * src/allmydata/mutable/filenode.py (MutableFileNode.create): add keysize=
177 * src/allmydata/dirnode.py (NewDirectoryNode.create): same
178 * src/allmydata/client.py (Client.DEFAULT_MUTABLE_KEYSIZE): add default,
179   this overrides the one in MutableFileNode
180]
181[remove trailing whitespace
182Brian Warner <warner@lothar.com>**20090629200358
183 Ignore-this: 7a3756618dcfca0a40acb4c3d15f6440
184]
185[remove trailing whitespace from some util classes
186Brian Warner <warner@lothar.com>**20090629200341
187 Ignore-this: ded84c38885d6aabf2691957dde82bf3
188]
189[repairer: raise a better exception when faced with a readonly filenode. Still
190Brian Warner <warner@lothar.com>**20090626063230
191 Ignore-this: a100005b973a6a57566b943073352828
192 produces an error, though.
193]
194[mutable/filenode.py: set _writekey to None, rather than leaving it missing
195Brian Warner <warner@lothar.com>**20090626062022
196 Ignore-this: be111c37dabd6c7aa47abd7bf160926e
197 
198 This will at least turn the really really weird error when a repair of a
199 readonly mutable file is attempted into a merely really weird assertion that
200 mentions "repair currently requires a writecap".
201]
202[one last tweak
203Brian Warner <warner@lothar.com>**20090626052627
204 Ignore-this: 8d9d045a1ebe774aeed6f7e1cdd36973
205]
206[more 'tahoe cp' docs tweaks
207Brian Warner <warner@lothar.com>**20090626051652
208 Ignore-this: f594c395007af64da3d7302943ef8855
209]
210[cli.py: minor tweaks to test posthooks
211"Brian Warner <warner@lothar.com>"**20090626024557]
212[cli.py: update comments on 'tahoe cp' --help a bit
213Brian Warner <warner@lothar.com>**20090626023837
214 Ignore-this: 4090b06896542fbf260d808e8a991cea
215]
216[cli: add some --help text to 'tahoe cp'
217warner@lothar.com**20090625235751]
218[make it possible to add/renew-lease from the WUI
219Brian Warner <warner@lothar.com>**20090626061824
220 Ignore-this: 6fb6a0e8ecfc630464ac37a779078e5
221 add add/renew-lease checkbox on the "more info" page check/deep-check forms
222]
223[hush pyflakes
224warner@lothar.com**20090625021809]
225[Split out NoSharesError, stop adding attributes to NotEnoughSharesError, change humanize_failure to include the original exception string, update tests, behave better if humanize_failure fails.
226warner@lothar.com**20090625021707]
227[remove introducer/old.py, will create something similar when the RIIntroducer changes
228warner@lothar.com**20090624194038]
229[Basically just a trivial platform detection patch for NetBSD.
230midnightmagic@example.com**20090617233647]
231[check_grid.py: print stderr when a subcommand fails
232warner@lothar.com**20090623022833]
233[big rework of introducer client: change local API, split division of responsibilites better, remove old-code testing, improve error logging
234warner@lothar.com**20090623021047]
235[web/welcome.xhtml: remove trailing whitespace
236warner@lothar.com**20090623020909]
237[rrefutil: add trap_deafref utility, to make the callRemote-plus-ignore-DeadReferenceError-plug-log-other-errors pattern easier
238warner@lothar.com**20090623020826]
239[PollMixin: snoop trial's error observer to halt the test early if an error is seen. This turns a lot of timeouts into fast failures.
240warner@lothar.com**20090623020731]
241[clean up storage_broker interface: should fix #732
242warner@lothar.com**20090621235119
243 Ignore-this: fb93cd670e809eed2bc123142dd8d4ff
244]
245[hush pyflakes with recent FileTooLarge removal
246warner@lothar.com**20090621231757
247 Ignore-this: 4231b38c7e9091b0577b07ec99ac2df0
248]
249[add docs/proposed/GridID.txt (cleaning out some of my old branches)
250warner@lothar.com**20090621191204]
251[docs: remove warning about inability to build modules on py2.6 on Windows with mingw, differentiate between clients and servers, reflow to a consistent column width (79), add hint about firewall/NAT docs.
252zooko@zooko.com**20090621175005
253 Ignore-this: 85e7c1ccb258317ca4dd37917afb48f5
254]
255[setup: copy in misc/show-tools-version.py from zfec -- it prints out platform and setuptools versions
256zooko@zooko.com**20090621055846
257 Ignore-this: 4e144886ab02414bbaaf0295ce2b337
258]
259[docs: start updating the NEWS and relnotes.txt files, add Kevan to CREDITS
260zooko@zooko.com**20090621055114
261 Ignore-this: 35e05a5739549ffa693d55df51ffcfd
262]
263[change max filesize limit tests
264kevan@isnotajoke.com**20090620212822
265 Ignore-this: 38e7c62a308c3c93e79df4bf72f4f675
266 
267 Instead of testing to see that the previous SDMF filesize limit was being
268 obeyed, we now test to make sure that we can insert files larger than that
269 limit.
270]
271[remove upper limit on SDMF filesize
272kevan@isnotajoke.com**20090620213130
273 Ignore-this: 5bc48c7421c73827909a17e651799d0c
274]
275[immutable/download: instrument do-you-have-block responses to investigate #732
276warner@lothar.com**20090621041209]
277[Makefile: add jaunty support, rearrange debian sections in order of release
278warner@lothar.com**20090618050502]
279[test_util: add known-answer tests for hashutil tags
280warner@lothar.com**20090618045709]
281[tests: bump up a timeout that expired on Zandr's box
282zooko@zooko.com**20090613195703
283 Ignore-this: 853000f43665396b3734a99f72bd472d
284]
285[util: hooray!  A clean implementation of this simple utility!  Black Dew pointed out that the inverse of time.gmtime() is hidden in the "calendar" module.
286zooko@zooko.com**20090613160112
287 Ignore-this: 8359cc48ca1b8e2793e8b2afe2050cf4
288]
289[util: Brian's horrible hack to figure out how much localtime and utctime differ.  Now we'll see if it works on Windows.
290zooko@zooko.com**20090612204556
291 Ignore-this: 8c36431da4707da76472956c7750ecbd
292]
293[util: oops, time.tzset() doesn't work on Windows -- hopefully the new "London" unit test passes on Windows when we skip tzset() on platforms that don't have it
294zooko@zooko.com**20090612000920
295 Ignore-this: 7d314b8334cfa3f65f9635e3d3eb727e
296]
297[setup: edit install.html to warn Windows users away from Python v2.6
298zooko@zooko.com**20090611225506
299 Ignore-this: 89ad63eab49ede883ef92f2de5b5fc54
300]
301[util: fix time_format.iso_utc_time_to_seconds() so that it works even in London
302zooko@zooko.com**20090611221129
303 Ignore-this: 14dbb9840587797f848226fdb3645c08
304]
305[setup: run the same "make quicktest" on Windows as on non-Windows
306zooko@zooko.com**20090611193214
307 Ignore-this: d0c78377d3892373ec3d91e9e98bd8bd
308 I checked and it behaves about as well on Windows as the previous version did.
309]
310[tests: significantly increase timeouts that triggered on Zandr's ARM box
311zooko@zooko.com**20090610161043
312 Ignore-this: 2b3c556c5166a8267b4b15664d3aadfb
313]
314[test: multiple by 10 or so all timeouts that Zandr's ARM box just overran
315zooko@zooko.com**20090610125639
316 Ignore-this: bf62f063ab46814fd78de55a5fbc9d84
317]
318[tests: bump up timeout on a test that timed out on draco
319zooko@zooko.com**20090610044628
320 Ignore-this: f598b98cbae44dc947937c6ca54c10cb
321]
322[tests: raise the timeout for test_cli since Zandr's ARM machine totally burst through the old one
323zooko@zooko.com**20090609210509]
324[test_cli.Backup: increase timeout massively, it takes 1200s on zandr's ARM linkstation
325warner@lothar.com**20090609052801]
326[tests: double the timeouts on some tests which time-out on Francois's box
327zooko@zooko.com**20090609021753
328 Ignore-this: b2727b04402f24a9b9123d2f84068106
329]
330[tests: bump up timeouts so that the tests can finish before timeout on Francois's little arm box
331zooko@zooko.com**20090608225557
332 Ignore-this: fb83698338b2f12546cd3e1dcb896d34
333]
334[tests: increase timeouts on some other tests that timed-out on Francois's arm box
335zooko@zooko.com**20090605143437
336 Ignore-this: 2903cc20d914fc074c8d7a6c47740ba6
337]
338[tests: bump up the timeout on a bunch of tests that took longer than the default timeout (120s) on François Lenny-armv5tel
339zooko@zooko.com**20090605031444
340 Ignore-this: 84d67849b1f8edc88bf7001e31b5f7f3
341]
342[backup: remove the --no-backupdb command, the handling of "can't import sqlite", and the related tests, and change an error message to more correctly indicate failure to load the database from disk rather than failure to import sqlite module
343zooko@zooko.com**20090604173131
344 Ignore-this: 8200a9fdfc49243c280ecd1d0c44fa19
345 Fixes #728.
346]
347[setup: require pysqlite >= v2.0.5. if we are running on Python < 2.5
348zooko@zooko.com**20090604154548
349 Ignore-this: cf04f46079821df209d01dad2e24b40b
350]
351[setup: add pysqlite and sqlite to get_package_versions()
352zooko@zooko.com**20090604153728
353 Ignore-this: a1dea7fabeab2b08fb0d8d462facdb4d
354]
355[more refactoring: move get_all_serverids() and get_nickname_for_serverid() from Client to storage_broker
356warner@lothar.com**20090602030750]
357[more storage_broker refactoring: downloader gets a broker instead of a client,
358warner@lothar.com**20090602022511
359 use Client.get_storage_broker() accessor instead of direct attribute access.
360]
361[test_runner.py: remove test_client_no_noise: the issue in question is
362warner@lothar.com**20090601225007
363 ticketed in http://divmod.org/trac/ticket/2830 and doesn't need a Tahoe-side
364 change, plus this test fails on win32 for unrelated reasons (and test_client
365 is the place to think about the win32 issue).
366]
367[remove plaintext-hashing code from the helper interface, to close #722
368warner@lothar.com**20090601224916
369 and deny the Helper the ability to mount a partial-information-guessing
370 attack. This will probably break compatibility between new clients and very
371 old (pre-1.0) helpers.
372]
373[start to factor server-connection-management into a distinct 'StorageServerFarmBroker' object, separate from the client and the introducer. This is the starting point for #467: static server selection
374warner@lothar.com**20090601210604]
375[mutable: catch and display first error, so code bugs which break all servers get displayed better
376warner@lothar.com**20090601210407]
377[misc/run-with-pythonpath.py: exec() the child (on unix), to remove the intermediate process
378warner@lothar.com**20090601210137]
379[docs: small edit to about.html
380zooko@zooko.com**20090528233422
381 Ignore-this: 1cfbb1f8426ed6d63b2d3952e4464ddc
382]
383[docs: add links to Tahoe-LAFS for Paranoids and Tahoe-LAFS for Corporates in about.html
384zooko@zooko.com**20090528232717
385 Ignore-this: 7b70baa700d6b6f6e9ceec4132efe5
386]
387[docs: edit about.html and include network-and-reliance-topology.png (loaded from http://allmydata.org )
388zooko@zooko.com**20090527150916
389 Ignore-this: 44adc61cde8ced8be2f0a7dfc7d95dad
390]
391[docs: a few more edits to network-and-reliance-topology.svg
392zooko@zooko.com**20090527150458
393 Ignore-this: 2eac8c33fe71be25ff809b399c6193c1
394]
395[docs: update network-and-reliance-topology.svg for beauty and clarity
396zooko@zooko.com**20090527031123
397 Ignore-this: 5510914849771900ac29b4312470d84
398]
399[docs: update NEWS, relnotes.txt, CREDITS to mention WUI Style
400zooko@zooko.com**20090526233654
401 Ignore-this: 72d16ec833bc4a22af23d29ea1d5ff8b
402]
403[Modify markup of Tahoe web pages to be more amenable to styling; some minor changes of wording.
404Kevin Reid <kpreid@mac.com>**20090526232545
405 Ignore-this: 8845937f0df6c7ddc07abe3211428a6f
406]
407[Tweak wording in directory page: not-read-only is "modifiable", mention creating a directory _in this directory_.
408Kevin Reid <kpreid@mac.com>**20090526232414
409 Ignore-this: f006ec52ba2051802e025a60bcface56
410]
411[Comment on duplication of code/markup found during styling project.
412Kevin Reid <kpreid@mac.com>**20090503203442
413 Ignore-this: a4b7f9f0ab57d2c03be9ba761be8d854
414]
415[Add CSS styles to spiff up the Tahoe WUI's appearance, particularly the welcome page and directories.
416Kevin Reid <kpreid@mac.com>**20090503203142
417 Ignore-this: 5c50af241c1a958b5180ef2b6a49f626
418]
419[Link all Tahoe web pages to the /tahoe_css stylesheet which already exists.
420Kevin Reid <kpreid@mac.com>**20090503202533
421 Ignore-this: 2ea8d14d3168b9502cf39d5ea3f2f2a8
422]
423[Fix broken link from Provisioning to Reliability page.
424Kevin Reid <kpreid@mac.com>**20090501191050
425 Ignore-this: 56dc1a5e659b70cc02dc4df7b5d518cd
426]
427[docs: network-and-reliance-topology.svg: nicer server icons, mv out of the "specifications" subdir
428zooko@zooko.com**20090526165842
429 Ignore-this: 8f47ab3a0ab782c1f0d46e10bcaebe5b
430]
431[docs: update network-and-reliance-topology.svg
432zooko@zooko.com**20090526163105
433 Ignore-this: 2b864b4ed8743d4a15dfbb7eff3fa561
434]
435[accounting-overview.txt: more edits
436warner@lothar.com**20090523190359]
437[accounting-overview.txt: small edits
438warner@lothar.com**20090523184011]
439[_auto_deps.py: require foolscap-0.4.1, which adds an important fix for py2.4
440warner@lothar.com**20090523011103]
441[immutable/encode.py: tolerate immediate _remove_shareholder by copying the
442warner@lothar.com**20090522184424
443 landlord list before iterating over it. This can probably only happen in unit
444 tests, but cleaning it up makes certain test failures easier to analyze.
445]
446[switch to using RemoteException instead of 'wrapped' RemoteReferences. Should fix #653, the rref-EQ problem
447warner@lothar.com**20090522004632]
448[switch all foolscap imports to use foolscap.api or foolscap.logging
449warner@lothar.com**20090522003823]
450[_auto_deps.py: bump our foolscap dependency to 0.4.0, since I'm about to start using its new features
451warner@lothar.com**20090522002100]
452[test_runner.py: fix minor typo
453warner@lothar.com**20090520033620]
454[setup: fix bug (wrong import) in error message, as noticed by pyflakes
455zooko@zooko.com**20090519195642
456 Ignore-this: f1b9f8c00b46c1b5f2f20e5fc424f341
457]
458[setup: fix trivial bug in recent patch to test base64.py at startup
459zooko@zooko.com**20090519195129
460 Ignore-this: f6be038f74b53ca69e7109fe34adfbc
461]
462[setup: make Tahoe exit at startup with a useful error message if the base64.py module is buggy (fixes part of #710)
463zooko@zooko.com**20090519194555
464 Ignore-this: aa4d398235ddca8d417d61c9688e154
465]
466[test_introducer.py: add a test for the python2.4.0/2.4.1 bug in base64.b32decode
467warner@lothar.com**20090519034101]
468[immutable WriteBucketProxy: use pipeline to speed up uploads by overlapping roundtrips, for #392
469warner@lothar.com**20090518234422]
470[util/pipeline.py: new utility class to manage size-limited work pipelines, for #392
471warner@lothar.com**20090518234326]
472[docs: add a diagram that I'm about to show to the Boulder Linux Users Group: network-and-reliance-topology.svg
473zooko@zooko.com**20090514232059
474 Ignore-this: 2420c0a7c254c9f0f2349d9130490d33
475]
476[tests: mark test_runner as coded in utf-8 instead of ascii
477zooko@zooko.com**20090507223151
478 Ignore-this: ccf1ba9e5a9b53602701a36f9fdb545e
479]
480[tests: raise timeout on test_runner.RunNode.test_introducer from 120s to 240s, since it hit the 120s time-out on François Lenny-armv5tel
481zooko@zooko.com**20090507215012
482 Ignore-this: ba18fe6832ba255d4971e8f623ed7da5
483]
484[setup: fix comment in setup.py
485zooko@zooko.com**20090507215003
486 Ignore-this: c46ef664630d52733138ef7fbc551c1c
487]
488[docs: how_to_make_a_tahoe_release.txt: a couple of small edits
489zooko@zooko.com**20090507214932
490 Ignore-this: ae92aa835ad369f4b9e6e49d681957a3
491]
492[.darcs-boringfile: also ignore .gitignore
493warner@allmydata.com**20090415210550
494 Ignore-this: d29db314a1e506f6240859559436b4c3
495]
496[.darcs-boringfile: ignore .git, I'm starting to play around with it
497warner@allmydata.com**20090415205929
498 Ignore-this: 89234453516483c9586cd6e1351e88b5
499]
500[fix quicktest: stop using setuptools, add misc/run-with-pythonpath.py, to make it run faster
501warner@lothar.com**20090414201400]
502[TAG allmydata-tahoe-1.4.1
503zooko@zooko.com**20090414025636
504 Ignore-this: de78fc32364c83e9f4e26b5abcfdea4a
505]
506Patch bundle hash:
5074205616ff5ad322114503f4366e7f7ff9c780916