ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH
advanced | search help

Reference
ActivePython 2.5
Python Documentation
Library Reference
Front Matter
Contents
1. Introduction
2. Built-in Objects
3. Built-in Types
4. String Services
5. Data Types
5.1 datetime -- Basic date and time types
5.2 calendar -- General calendar-related functions
5.3 collections -- High-performance container datatypes
5.4 heapq -- Heap queue algorithm
5.5 bisect -- Array bisection algorithm
5.6 array -- Efficient arrays of numeric values
5.7 sets -- Unordered collections of unique elements
5.8 sched -- Event scheduler
5.9 mutex -- Mutual exclusion support
5.10 Queue -- A synchronized queue class
5.11 weakref -- Weak references
5.12 UserDict -- Class wrapper for dictionary objects
5.13 UserList -- Class wrapper for list objects
5.14 UserString -- Class wrapper for string objects
5.15 types -- Names for built-in types
5.16 new -- Creation of runtime internal objects
5.17 copy -- Shallow and deep copy operations
5.18 pprint -- Data pretty printer
5.19 repr -- Alternate repr() implementation
6. Numeric and Mathematical Modules
7. Internet Data Handling
8. Structured Markup Processing Tools
9. File Formats
10. Cryptographic Services
11. File and Directory Access
12. Data Compression and Archiving
13. Data Persistence
14. Generic Operating System Services
15. Optional Operating System Services
16. Unix Specific Services
17. Interprocess Communication and Networking
18. Internet Protocols and Support
19. Multimedia Services
20. Graphical User Interfaces with Tk
21. Internationalization
22. Program Frameworks
23. Development Tools
24. The Python Debugger
25. The Python Profilers
26. Python Runtime Services
27. Custom Python Interpreters
28. Restricted Execution
29. Importing Modules
30. Python Language Services
31. Python compiler package
32. Abstract Syntax Trees
33. Miscellaneous Services
34. SGI IRIX Specific Services
35. SunOS Specific Services
36. MS Windows Specific Services
A. Undocumented Modules
B. Reporting Bugs
C. History and License
Module Index
Index
About this document ...

MyASPN >> Reference >> ActivePython 2.5 >> Python Documentation >> Library Reference
ActivePython 2.5 documentation


5. Data Types

The modules described in this chapter provide a variety of specialized data types such as dates and times, fixed-type arrays, heap queues, synchronized queues, and sets.

The following modules are documented in this chapter:

datetime   Basic date and time types.
calendar   Functions for working with calendars, including some emulation of the Unix cal program.
collections   High-performance datatypes
heapq   Heap queue algorithm (a.k.a. priority queue).
bisect   Array bisection algorithms for binary searching.
array   Efficient arrays of uniformly typed numeric values.
sets   Implementation of sets of unique elements.
sched   General purpose event scheduler.
mutex   Lock and queue for mutual exclusion.
Queue   A synchronized queue class.
weakref   Support for weak references and weak dictionaries.
UserDict   Class wrapper for dictionary objects.
UserList   Class wrapper for list objects.
UserString   Class wrapper for string objects.
types   Names for built-in types.
new   Interface to the creation of runtime implementation objects.
copy   Shallow and deep copy operations.
pprint   Data pretty printer.
repr   Alternate repr() implementation with size limits.

See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved