Skip to content

Commit 300a88c

Browse files
committed
Bumpversion 0.6.3-alpha -> 0.6.3
1 parent 0c50a8b commit 300a88c

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
0.6.3 (unreleased)
4+
0.6.3 (2013-09-15)
55
------------------
66
.. module:: text.taggers
77

docs/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ TextBlob is actively developed on Github_.
3333

3434
You can clone the public repo: ::
3535

36-
git clone https://github.com/sloria/TextBlob.git
36+
$ git clone https://github.com/sloria/TextBlob.git
3737

3838
Or download one of the following:
3939

text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = '0.6.3-alpha'
3+
__version__ = '0.6.3'
44
__license__ = 'MIT'
55
__author__ = "Steven Loria"
66

text/parsers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
44
.. versionadded:: 0.6.0
55
'''
6-
from .en import parse as pattern_parse
6+
from __future__ import absolute_import
7+
from text.en import parse as pattern_parse
78

89
class BaseParser(object):
910

text/taggers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def split_sents(corpus):
112112
return tokens
113113

114114
def train(self, sentences, save_loc=None, nr_iter=5):
115-
'''Train a model from sentences, and save it at save_loc. nr_iter
115+
'''Train a model from sentences, and save it at ``save_loc``. ``nr_iter``
116116
controls the number of Perceptron training iterations.
117117
118118
:param sentences: A list of (words, tags) tuples.

0 commit comments

Comments
 (0)