From d4a59c254bd30a83748586a85850e0cd351b20d9 Mon Sep 17 00:00:00 2001 From: ines Date: Sat, 1 Apr 2017 10:19:01 +0200 Subject: [PATCH] Remove whitespace --- spacy/lexeme.pyx | 30 +++++++++++++++--------------- spacy/tokens/span.pyx | 26 +++++++++++++------------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/spacy/lexeme.pyx b/spacy/lexeme.pyx index 1d5421d74..84338e281 100644 --- a/spacy/lexeme.pyx +++ b/spacy/lexeme.pyx @@ -87,7 +87,7 @@ cdef class Lexeme: value (bool): The new value of the flag. """ Lexeme.c_set_flag(self.c, flag_id, value) - + def check_flag(self, attr_id_t flag_id): """Check the value of a boolean flag. @@ -137,7 +137,7 @@ cdef class Lexeme: "\npython -m spacy.%s.download all\n" "to install the data." % self.vocab.lang ) - + vector_view = self.c.vector return numpy.asarray(vector_view) @@ -163,7 +163,7 @@ cdef class Lexeme: return self.c.sentiment def __set__(self, float sentiment): self.c.sentiment = sentiment - + property orth_: def __get__(self): return self.vocab.strings[self.c.orth] @@ -171,7 +171,7 @@ cdef class Lexeme: property lower: def __get__(self): return self.c.lower def __set__(self, int x): self.c.lower = x - + property norm: def __get__(self): return self.c.norm def __set__(self, int x): self.c.norm = x @@ -187,11 +187,11 @@ cdef class Lexeme: property suffix: def __get__(self): return self.c.suffix def __set__(self, int x): self.c.suffix = x - + property cluster: def __get__(self): return self.c.cluster def __set__(self, int x): self.c.cluster = x - + property lang: def __get__(self): return self.c.lang def __set__(self, int x): self.c.lang = x @@ -203,11 +203,11 @@ cdef class Lexeme: property lower_: def __get__(self): return self.vocab.strings[self.c.lower] def __set__(self, unicode x): self.c.lower = self.vocab.strings[x] - + property norm_: def __get__(self): return self.vocab.strings[self.c.norm] def __set__(self, unicode x): self.c.norm = self.vocab.strings[x] - + property shape_: def __get__(self): return self.vocab.strings[self.c.shape] def __set__(self, unicode x): self.c.shape = self.vocab.strings[x] @@ -239,7 +239,7 @@ cdef class Lexeme: property is_alpha: def __get__(self): return Lexeme.c_check_flag(self.c, IS_ALPHA) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_ALPHA, x) - + property is_ascii: def __get__(self): return Lexeme.c_check_flag(self.c, IS_ASCII) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_ASCII, x) @@ -260,23 +260,23 @@ cdef class Lexeme: def __get__(self): return Lexeme.c_check_flag(self.c, IS_PUNCT) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_PUNCT, x) - property is_space: + property is_space: def __get__(self): return Lexeme.c_check_flag(self.c, IS_SPACE) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_SPACE, x) - property is_bracket: + property is_bracket: def __get__(self): return Lexeme.c_check_flag(self.c, IS_BRACKET) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_BRACKET, x) - property is_quote: + property is_quote: def __get__(self): return Lexeme.c_check_flag(self.c, IS_QUOTE) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_QUOTE, x) - property is_left_punct: + property is_left_punct: def __get__(self): return Lexeme.c_check_flag(self.c, IS_LEFT_PUNCT) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_LEFT_PUNCT, x) - property is_right_punct: + property is_right_punct: def __get__(self): return Lexeme.c_check_flag(self.c, IS_RIGHT_PUNCT) def __set__(self, bint x): Lexeme.c_set_flag(self.c, IS_RIGHT_PUNCT, x) @@ -284,7 +284,7 @@ cdef class Lexeme: property like_url: def __get__(self): return Lexeme.c_check_flag(self.c, LIKE_URL) def __set__(self, bint x): Lexeme.c_set_flag(self.c, LIKE_URL, x) - + property like_num: def __get__(self): return Lexeme.c_check_flag(self.c, LIKE_NUM) def __set__(self, bint x): Lexeme.c_set_flag(self.c, LIKE_NUM, x) diff --git a/spacy/tokens/span.pyx b/spacy/tokens/span.pyx index fc5d26174..37d99183c 100644 --- a/spacy/tokens/span.pyx +++ b/spacy/tokens/span.pyx @@ -128,13 +128,13 @@ cdef class Span: end = token_by_end(self.doc.c, self.doc.length, self.end_char) if end == -1: raise IndexError("Error calculating span: Can't find end") - + self.start = start self.end = end + 1 property sent: '''The sentence span that this span is a part of. - + Returns: Span The sentence this is part of. ''' @@ -157,7 +157,7 @@ cdef class Span: if 'has_vector' in self.doc.user_span_hooks: return self.doc.user_span_hooks['has_vector'](self) return any(token.has_vector for token in self) - + property vector: def __get__(self): if 'vector' in self.doc.user_span_hooks: @@ -200,9 +200,9 @@ cdef class Span: property noun_chunks: ''' Yields base noun-phrase #[code Span] objects, if the document - has been syntactically parsed. A base noun phrase, or - 'NP chunk', is a noun phrase that does not permit other NPs to - be nested within it – so no NP-level coordination, no prepositional + has been syntactically parsed. A base noun phrase, or + 'NP chunk', is a noun phrase that does not permit other NPs to + be nested within it – so no NP-level coordination, no prepositional phrases, and no relative clauses. For example: ''' def __get__(self): @@ -227,19 +227,19 @@ cdef class Span: Returns: Token: The root token. - + i.e. has the shortest path to the root of the sentence (or is the root itself). If multiple words are equally high in the tree, the first word is taken. - + For example: - + >>> toks = nlp(u'I like New York in Autumn.') Let's name the indices --- easier than writing "toks[4]" etc. - >>> i, like, new, york, in_, autumn, dot = range(len(toks)) + >>> i, like, new, york, in_, autumn, dot = range(len(toks)) The head of 'new' is 'York', and the head of 'York' is 'like' @@ -301,10 +301,10 @@ cdef class Span: return self.doc[self.start] else: return self.doc[root] - + property lefts: """Tokens that are to the left of the span, whose head is within the Span. - + Yields: Token A left-child of a token of the span. """ def __get__(self): @@ -315,7 +315,7 @@ cdef class Span: property rights: """Tokens that are to the right of the Span, whose head is within the Span. - + Yields: Token A right-child of a token of the span. """ def __get__(self):