/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Martin Pool
  • Date: 2006-01-13 09:57:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1611.
  • Revision ID: mbp@sourcefrog.net-20060113095713-1fa5912229a3898e
Review updates of pycurl transport

Split them out into 

  bzrlib.transport.http             common base
  bzrlib.transport.http._urllib     pure python
  bzrlib.transport.http._pycurl     calls pycurl

Update to work with robert's nice transport test multiplexer.

Add PyCurlTransport.has() which does just a HEAD request; should be faster.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Coding style
2
 
------------
3
 
Dulwich tries to follow PEP-8 where possible. docstrings should use 
4
 
restructuredText.
5
 
 
6
 
Testing
7
 
-------
8
 
The aim is to have unit tests for all functionality: If you add functionality
9
 
please provide matching tests. If you fix a bug, it would be nice if you could
10
 
add a test that reproduces the bug (so that we can prevent regressions).