~ubuntu-branches/ubuntu/natty/pytables/natty-updates

« back to all changes in this revision

Viewing changes to RELEASE-NOTES.txt.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2006-06-28 10:45:03 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060628104503-cc251q5o5j3e2k10
  * Fixed call to pyversions in debian/rules which failed on recent versions 
    of pyversions
  * Fixed clean rule in debian/rules which left the stamp files behind
  * Acknowledge NMU
  * Added Alexandre Fayolle to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
============================
 
2
 What's new in PyTables @VERSION@
 
3
============================
 
4
 
 
5
 
 
6
:Author: Francesc Altet
 
7
:Contact: faltet@carabos.com
 
8
:Author: Ivan Vilata i Balaguer
 
9
:Contact: ivilata@carabos.com
 
10
 
 
11
 
 
12
This document details the modifications to PyTables since version 1.2.  Its
 
13
main purpose is help you ensure that your programs will be runnable when you
 
14
switch from PyTables 1.2 to PyTables @VERSION@.
 
15
 
 
16
 
 
17
API additions
 
18
=============
 
19
 
 
20
- The ``Table.Cols`` accessor has received a new ``__setitem__()`` method that
 
21
  allows doing things like::
 
22
 
 
23
      table.cols[4] = record
 
24
      table.cols.x[4:1000:2] = array   # homogeneous column
 
25
      table.cols.Info[4:1000:2] = recarray   # nested column
 
26
 
 
27
 
 
28
Backward-incompatible changes
 
29
=============================
 
30
 
 
31
- None
 
32
 
 
33
 
 
34
Deprecated features
 
35
===================
 
36
 
 
37
- None
 
38
 
 
39
 
 
40
API refinements
 
41
===============
 
42
 
 
43
- ``Table.itersequence()`` has changed the default value for the ``sort``
 
44
  parameter.  It is now false by default, as it is not clear if this actually
 
45
  accelerates the iterator, so it is better to let the user do the proper
 
46
  checks (if interested).
 
47
 
 
48
 
 
49
Bug fixes (affecting API)
 
50
=========================
 
51
 
 
52
- None
 
53
 
 
54
 
 
55
----
 
56
 
 
57
  **Enjoy data!**
 
58
 
 
59
  -- The PyTables Team
 
60
 
 
61
 
 
62
.. Local Variables:
 
63
.. mode: text
 
64
.. coding: utf-8
 
65
.. fill-column: 78
 
66
.. End: