2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-30 20:12:37 +00:00

input iterator support

[SVN r13960]
This commit is contained in:
Dave Abrahams
2002-05-17 05:01:53 +00:00
parent 53c69e7ad5
commit 313fe2c76c
5 changed files with 73 additions and 2 deletions

View File

@@ -14,12 +14,12 @@
#include <iterator>
#include <algorithm>
using namespace boost::python;
typedef std::list<int> list_int;
typedef std::list<list_int> list_list;
void push_back(list_int& x, int y)
{
x.push_back(y);