Changeset 1668
- Timestamp:
- 09/12/08 03:31:36 (3 months ago)
- Location:
- pyamf/trunk
- Files:
-
- 6 modified
-
CHANGES.txt (modified) (1 diff)
-
cpyamf (modified) (1 prop)
-
cpyamf/__init__.py (modified) (1 diff)
-
cpyamf/util.c (modified) (2 diffs)
-
cpyamf/util.h (modified) (1 diff)
-
setup.cfg (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyamf/trunk/CHANGES.txt
r1644 r1668 7 7 0.4.0 (unreleased) 8 8 ------------------ 9 - Python C-extension for the pyamf.util.BufferedByteStream class. Contributed 10 by Gerard Escalante (Ticket:225) 9 11 - New API to add headers such as cookies in pyamf.remoting.client (Ticket:337) 10 12 - Now clearing the context between remoting requests (Ticket:309) -
pyamf/trunk/cpyamf
- Property svn:ignore
-
old new 1 1 *.pyc 2 2 *.pyd 3 *.so
-
- Property svn:ignore
-
pyamf/trunk/cpyamf/__init__.py
r1662 r1668 1 # Copyright (c) 2007-2008 The PyAMF Project. 2 # See LICENSE for details. 3 4 """ 5 Python 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 1 6 #include <Python.h> 2 7 … … 1326 1331 PyObject *m; 1327 1332 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}"); 1329 1334 1330 1335 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 1 6 #ifndef CPYAMF_UTIL_H 2 7 #define CPYAMF_UTIL_H -
pyamf/trunk/setup.cfg
r1044 r1668 11 11 12 12 # The list of objects to document. 13 modules: pyamf 13 modules: pyamf, cpyamf 14 14 15 15 # Don't examine in any way the modules whose dotted name match this
