|
1 | 1 | #
|
2 | 2 | # openslide-python - Python bindings for the OpenSlide library
|
3 | 3 | #
|
4 |
| -# Copyright (c) 2010-2013 Carnegie Mellon University |
| 4 | +# Copyright (c) 2010-2014 Carnegie Mellon University |
5 | 5 | #
|
6 | 6 | # This library is free software; you can redistribute it and/or modify it
|
7 | 7 | # under the terms of version 2.1 of the GNU Lesser General Public License
|
|
19 | 19 |
|
20 | 20 | """A library for reading whole-slide images.
|
21 | 21 |
|
22 |
| -This package provides Python bindings for the OpenSlide library. For |
23 |
| -documentation on the OpenSlide API, see: |
24 |
| -
|
25 |
| -http://openslide.org/api/openslide_8h.html |
| 22 | +This package provides Python bindings for the OpenSlide library. |
26 | 23 | """
|
27 | 24 |
|
28 | 25 | from __future__ import division, print_function
|
@@ -141,9 +138,9 @@ def get_thumbnail(self, size):
|
141 | 138 | class OpenSlide(AbstractSlide):
|
142 | 139 | """An open whole-slide image.
|
143 | 140 |
|
144 |
| - close() is called automatically when the object is deleted. In |
145 |
| - addition, an OpenSlide object may be used as a context manager, and |
146 |
| - will be closed when exiting the context. |
| 141 | + close() is called automatically when the object is deleted. |
| 142 | + The object may be used as a context manager, in which case it will be |
| 143 | + closed upon exiting the context. |
147 | 144 |
|
148 | 145 | If an operation fails, OpenSlideError is raised. Note that OpenSlide
|
149 | 146 | has latching error semantics: once OpenSlideError is raised, all future
|
|
0 commit comments