S. Dale Morrey

Results 28 comments of S. Dale Morrey

Looks like my block quote lost some formating, to see what I'm talking about look at the [California Style Manual](http://www.sdap.org/downloads/Style-Manual.pdf) on page 32

I'll fork the code this evening and take a look. Honestly I've never peeked under the hood of this beast. Regex's have always looked like some sort of black magic...

You will never see SC in the year field of a Supreme Court decision (if the person who wrote it is citing things properly). The court is only included when...

Sure! Do we know where this citation came from? A search of "263 F.Supp. 26" on Westlaw shows just 5 citing cases. [Bowen v. Massachusetts, 487 U.S. 879, 108 S....

@mlissner I'm sorry, I don't understand. >Looks like you need to do a little linting work now that tests have completed though. Can you please give me more info about...

Ok, I understand on the linting. I guess I'm so used to golint autoliniting my code that I forgot python doesn't do this automatically. So for future reference, is there...

Looks like models.py at line around 201 needs some guard code to ensure the "reporter" key is present. Something along the lines of ``` if self.edition_guess: if "reporter" in self.groups:...

Be careful when normalizing unicode. It gets rid of things that can be very important such as § (Sec.) and §§ (Secs.) So before doing that, it might be good...