Rename titles of pages to be more descriptive.

This commit is contained in:
Graham Dumpleton
2013-10-07 22:24:45 +11:00
parent aa9c8e13f0
commit ec52414633
8 changed files with 18 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
Benchmarks
==========
Decorator Benchmarks
====================
The **wrapt** module ensures that your decorators will work in all
situations. The implementation therefore does not take the shortcuts that

View File

@@ -1,5 +1,5 @@
Changes
=======
Release Notes
=============
Version 1.2.0
-------------

View File

@@ -1,5 +1,5 @@
Decorators
==========
Function Decorators
===================
The **wrapt** module provides various components, but the main reason that
it likely is to be used is for creating decorators. This document covers the

View File

@@ -1,12 +1,12 @@
Examples
========
Assorted Examples
=================
This document provides various examples of decorators often described
elsewhere, to exhibit what can be done with decorators using the **wrapt**
module, for the purpose of comparison.
Synchronization
---------------
Thread Synchronization
----------------------
.. note::
The final variant of the ``synchronized`` decorator described here

View File

@@ -1,5 +1,5 @@
Issues
======
Known Issues
============
The following known issues exist.

View File

@@ -1,5 +1,5 @@
Quick Start
===========
Getting Started
===============
To implement your decorator you need to first define a wrapper function.
This will be called each time a decorated function is called. The wrapper

View File

@@ -1,5 +1,5 @@
Testing
-------
Running Unit Tests
==================
Unit tests are located in the ``tests`` directory.

View File

@@ -1,5 +1,5 @@
Wrappers
========
Proxies and Wrappers
====================
Underlying the implementation of the decorators created by the **wrapt**
module is a wrapper class which acts as a transparent object proxy. This