Skip to content

Commit

Permalink
Revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCD committed Nov 30, 2014
1 parent 25e2e6e commit 7f8566d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion artists.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
THE_GREAT_QUESTION = ('Michaelangelo. Leonardo. Rafael. Donatello. Turtles? '
'Creators of the great works? Both? You be the judge!')
STATEMENTS = THE_GREAT_QUESTION.split(". ")
STATEMENTS = THE_GREAT_QUESTION.split(".")
ARTISTS = STATEMENTS[:4]
NUM_ARTISTS = len(ARTISTS)
CHARACTERS = len(THE_GREAT_QUESTION)
Expand Down
2 changes: 1 addition & 1 deletion escapery.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# -*- coding: utf-8 -*-
"""Escapery"""

ESCAPE_STRING = "\n"
ESCAPE_STRING = '\\n\'"'
2 changes: 1 addition & 1 deletion identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def is_empty(my_sequence):
"""
count = get_member_count(my_sequence)

if count is not None:
if count is None:
return count == 0
else:
raise TypeError('Object has no len()')
Expand Down
5 changes: 4 additions & 1 deletion inquisition.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The following is taken from Monty Python.
The variable SPANISH contains a famous comedic speech."""
The variable SPANISH contains a famous comedic speech.
It will later be edited"""

SPANISH = '''Nobody expects the Spanish Inquisition!
Our chief weapon is surprise...surprise and fear...fear and surprise....
Expand Down

0 comments on commit 7f8566d

Please sign in to comment.