summaryrefslogtreecommitdiff
path: root/lang_ext/python/cext.c
blob: c2199c46b203430f893fcd040f356d634b90ca02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 *
 */

#include "cext.h"

PyMODINIT_FUNC
initcext(void)
{
  PyObject *mod = Py_InitModule("upb.cext", NULL);
  (void)mod;
  initdefinition();
  initpb();
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback