Commit 8cf224d5cc18029123d9ed4e429cf05f48a987c4
- Diff rendering mode:
- inline
- side by side
README
(2 / 1)
|   | |||
| 11 | 11 | ------------------------------------------------------------------------------ | |
| 12 | 12 | ||
| 13 | 13 | This program is distributed under the terms of the GNU General Public License | |
| 14 | (GPL), version 2. This means that you can freely modify, copy and distribute | ||
| 14 | (GPL), version 2, or (at your option), any later version. | ||
| 15 | This means that you can freely modify, copy and distribute | ||
| 15 | 16 | the program, under the terms of said license. The COPYING file gives a good | |
| 16 | 17 | overview of what you can and can't do. | |
| 17 | 18 |
datamatrix/datamatrix.py
(3 / 2)
|   | |||
| 4 | 4 | # (C) 2008 Luca Beltrame (einar at heavensinferno dot net) | |
| 5 | 5 | # (C) 2008 Giovanni Marco Dall'Olio (dalloliogm at gmail dot com) | |
| 6 | 6 | # This program is distributed under the terms of the GNU General Public | |
| 7 | # License (GPL), version 2. See the file COPYING for details. | ||
| 7 | # License (GPL), version 2, or (at your option) any later version. | ||
| 8 | # See the file COPYING for details. | ||
| 8 | 9 | # --------------------------------------------------------------------------- | |
| 9 | 10 | ||
| 10 | 11 | "Module providing a Pythonic implementation of a data.frame." | |
| … | … | ||
| 638 | 638 | """Creates a new matrix with only a subset of the columns present, as | |
| 639 | 639 | specified by the columns_list parameter.""" | |
| 640 | 640 | ||
| 641 | destination = EmptyMatrix(rownames=matrix.rownames, | ||
| 641 | destination = EmptyMatrix(row_names=matrix.rownames, | ||
| 642 | 642 | identifier=matrix.identifier) | |
| 643 | 643 | for column in column_list: | |
| 644 | 644 | if column in matrix: |
doc_sources/license.rst
(1 / 2)
|   | |||
| 2 | 2 | License | |
| 3 | 3 | ******* | |
| 4 | 4 | ||
| 5 | This program is distributed under the terms of the GNU General Public License (GPL), version 2. This means that you can freely modify, copy and distribute | ||
| 6 | the program, under the terms of said license. The COPYING file gives a good overview of what you can and can't do. | ||
| 5 | This program is distributed under the terms of the GNU General Public License (GPL), version 2, or (at your option), any later version. This means that you can freely modify, copy and distribute the program, under the terms of said license. The COPYING file gives a good overview of what you can and can't do. | ||
| 7 | 6 | ||
| 8 | 7 | Although we hope that this program will be useful, it is without ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |

