mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	Merge pull request #3218 from hugovk/update-docstrings
Update docstrings
This commit is contained in:
		
						commit
						17be81f53d
					
				| 
						 | 
					@ -35,7 +35,7 @@ What about PIL?
 | 
				
			||||||
    Prior to Pillow 2.0.0, very few image code changes were made. Pillow 2.0.0
 | 
					    Prior to Pillow 2.0.0, very few image code changes were made. Pillow 2.0.0
 | 
				
			||||||
    added Python 3 support and includes many bug fixes from many contributors.
 | 
					    added Python 3 support and includes many bug fixes from many contributors.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
As more time passes since the last PIL release, the likelihood of a new PIL release decreases. However, we've yet to hear an official "PIL is dead" announcement. So if you still want to support PIL, please `report issues here first`_, then `open corresponding Pillow tickets here`_.
 | 
					As more time passes since the last PIL release (1.1.7 in 2009), the likelihood of a new PIL release decreases. However, we've yet to hear an official "PIL is dead" announcement. So if you still want to support PIL, please `report issues here first`_, then `open corresponding Pillow tickets here`_.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.. _report issues here first: https://bitbucket.org/effbot/pil-2009-raclette/issues
 | 
					.. _report issues here first: https://bitbucket.org/effbot/pil-2009-raclette/issues
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,15 +1,18 @@
 | 
				
			||||||
#
 | 
					"""Pillow {} (Fork of the Python Imaging Library)
 | 
				
			||||||
# The Python Imaging Library.
 | 
					 | 
				
			||||||
# $Id$
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# package placeholder
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# Copyright (c) 1999 by Secret Labs AB.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
# See the README file for information on usage and redistribution.
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
# ;-)
 | 
					Pillow is the friendly PIL fork by Alex Clark and Contributors.
 | 
				
			||||||
 | 
					    https://github.com/python-pillow/Pillow/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Pillow is forked from PIL 1.1.7.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					PIL is the Python Imaging Library by Fredrik Lundh and Contributors.
 | 
				
			||||||
 | 
					Copyright (c) 1999 by Secret Labs AB.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Use PIL.__version__ for this Pillow version.
 | 
				
			||||||
 | 
					PIL.VERSION is the old PIL version and will be removed in the future.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					;-)
 | 
				
			||||||
 | 
					"""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from . import _version
 | 
					from . import _version
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -21,6 +24,9 @@ PILLOW_VERSION = __version__ = _version.__version__
 | 
				
			||||||
 | 
					
 | 
				
			||||||
del _version
 | 
					del _version
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					__doc__ = __doc__.format(__version__)  # include version in docstring
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
_plugins = ['BlpImagePlugin',
 | 
					_plugins = ['BlpImagePlugin',
 | 
				
			||||||
            'BmpImagePlugin',
 | 
					            'BmpImagePlugin',
 | 
				
			||||||
            'BufrStubImagePlugin',
 | 
					            'BufrStubImagePlugin',
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user