Matt Dahl
Matt Dahl
This is a first pass at addressing #1601, the other half of https://github.com/freelawproject/eyecite/issues/30. I've broken up our `search_db_for_full_citation()` function into two paths: one for when we have full citation information...
As discussed in https://github.com/freelawproject/eyecite/issues/135#issuecomment-1386402484, there is presently a bug where court strings without whitespace are not properly matched. 3b2fe0972ebb86fad1a0beaa9942980398f38cbc implements a failing test for this bug. 94b1e2f16ddbd8005a6c5905a1621850c4adac9c implements a simple...
Consider Marbury v. Madison: ``` cite1 = '5 U.S. 137' cite2 = '5 U.S. (1 Cranch) 137' hash(get_citations(cite1)[0]) == hash(get_citations(cite2)[0]) # Returns False, but True is expected ``` I think...
Eyecite thinks that South Carolina citations are SCOTUS citations: ``` from eyecite import get_citations text = 'Lee County School Dist. No. 1 v. Gardner, 263 F.Supp. 26 (SC 1967)' cites...