[SciPy-dev] RFR 503, 849: more robust implementation of real Bessel I_v

Pauli Virtanen pav at iki.fi
Thu Feb 26 05:06:27 EST 2009


Thu, 26 Feb 2009 08:30:18 +0100, Nils Wagner wrote:
> Pauli Virtanen <pav at iki.fi> wrote:
>> 	http://codereview.appspot.com/20078
>> 	http://github.com/pv/scipy-work/tree/ticket-503-special-iv-fix
[clip]
> How can I apply your patch ?

There's the "Download raw patch set" on the codereview page, on top of 
the table containing the individual patches. Apply it with

	patch -p1 < issue_20078_1.diff

on top of SVN checkout.

    ***

Alternatively, check out the git branch: first, get the SVN mirror

	git clone git://github.com/pv/scipy-svn.git scipy.git

This takes some time, as the branch contains the whole history of
Scipy, but you need to do this only once.

Then get my branch:

	cd scipy.git
	git remote add pauli git://github.com/pv/scipy-work.git
	git fetch pauli
	git remote show pauli

Switch the working tree to it:

	git checkout pauli/ticket-503-special-iv-fix

Examine what was done there:

	git log master..
	git diff master
	git show bb21c
	git show 7f738

If you want to hack on it yourself, work on a branch of your own:

	git checkout -b ticket-503-special-iv-fix

If you want to get the SVN tags and branches, tell git you want them:

	cd scipy.git
	git remote rm origin
	git remote add --mirror origin git://github.com/pv/scipy-svn.git
	git fetch

	git branch -r
	git log tags/0.7.0..trunk
	git diff tags/0.7.0 trunk

-- 
Pauli Virtanen




More information about the SciPy-Dev mailing list