Changeset 1668

Show
Ignore:
Timestamp:
09/12/08 03:31:36 (3 months ago)
Author:
thijs
Message:

Doc update for cpyamf.

Location:
pyamf/trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • pyamf/trunk/CHANGES.txt

    r1644 r1668  
    770.4.0 (unreleased) 
    88------------------ 
     9 - Python C-extension for the pyamf.util.BufferedByteStream class. Contributed 
     10   by Gerard Escalante (Ticket:225) 
    911 - New API to add headers such as cookies in pyamf.remoting.client (Ticket:337) 
    1012 - Now clearing the context between remoting requests (Ticket:309) 
  • pyamf/trunk/cpyamf

    • Property svn:ignore
      •  

        old new  
        11*.pyc 
        22*.pyd 
         3*.so 
  • pyamf/trunk/cpyamf/__init__.py

    r1662 r1668  
     1# Copyright (c) 2007-2008 The PyAMF Project. 
     2# See LICENSE for details. 
     3 
     4""" 
     5Python C-extensions for L{PyAMF<pyamf>}. 
     6 
     7@since: 0.4 
     8""" 
  • pyamf/trunk/cpyamf/util.c

    r1662 r1668  
     1/** 
     2 * Copyright (c) 2007-2008 The PyAMF Project. 
     3 * See LICENSE for details. 
     4**/ 
     5 
    16#include <Python.h> 
    27 
     
    13261331    PyObject *m; 
    13271332    m = Py_InitModule3("cpyamf.util", module_methods,  
    1328                        "C Extension-based substitutes for module pyamf.util"); 
     1333                       "C Extension-based substitutes for module L{pyamf.util}"); 
    13291334 
    13301335    if (!m) 
  • pyamf/trunk/cpyamf/util.h

    r1662 r1668  
     1/** 
     2 * Copyright (c) 2007-2008 The PyAMF Project. 
     3 * See LICENSE for details. 
     4**/ 
     5 
    16#ifndef CPYAMF_UTIL_H 
    27#define CPYAMF_UTIL_H 
  • pyamf/trunk/setup.cfg

    r1044 r1668  
    1111 
    1212# The list of objects to document. 
    13 modules: pyamf 
     13modules: pyamf, cpyamf 
    1414 
    1515# Don't examine in any way the modules whose dotted name match this