From 2b576d22af93c3fe0f5cae4277d0cd3a4de7c066 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Sun, 11 May 2008 20:36:09 +0000 Subject: [PATCH] Renamed PixMapWrapper module to pixmapwrapper. --- Doc/library/undoc.rst | 7 +++---- Lib/plat-mac/{PixMapWrapper.py => pixmapwrapper.py} | 0 Misc/NEWS | 2 ++ 3 files changed, 5 insertions(+), 4 deletions(-) rename Lib/plat-mac/{PixMapWrapper.py => pixmapwrapper.py} (100%) diff --git a/Doc/library/undoc.rst b/Doc/library/undoc.rst index 62157d44f50..a57c9bd0f0e 100644 --- a/Doc/library/undoc.rst +++ b/Doc/library/undoc.rst @@ -99,15 +99,14 @@ MacPython, as a MacPython applet or under OSX Python. A low-level interface to Navigation Services. -:mod:`PixMapWrapper` --- Wrapper for PixMap objects +:mod:`pixmapwrapper` --- Wrapper for PixMap objects --------------------------------------------------- -.. module:: PixMapWrapper +.. module:: pixmapwrapper :platform: Mac :synopsis: Wrapper for PixMap objects. - -:mod:`PixMapWrapper` wraps a PixMap object with a Python object that allows +:mod:`pixmapwrapper` wraps a PixMap object with a Python object that allows access to the fields by name. It also has methods to convert to and from :mod:`PIL` images. diff --git a/Lib/plat-mac/PixMapWrapper.py b/Lib/plat-mac/pixmapwrapper.py similarity index 100% rename from Lib/plat-mac/PixMapWrapper.py rename to Lib/plat-mac/pixmapwrapper.py diff --git a/Misc/NEWS b/Misc/NEWS index 955b58a4125..47eb5c2f2e9 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -21,6 +21,8 @@ Extension Modules Library ------- +- The PixMapWrapper module has been renamed to pixmapwrapper. + - The Queue module has been renamed to queue. - The copy_reg module has been renamed to copyreg.