blob: 33ca5dbe18cf9a6472a2caa2ad290e7803603f2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#/***************************************************************************
# OSlinux.h
# -----------
# begin : sam nov 2 2002
# copyright : (C) 1992-2004 by Fabian Padilla
# email : fp@bridgethink.com
# ***************************************************************************/
# /***************************************************************************
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the Foundation Public License as published by *
# * bridgethink sarl; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# ***************************************************************************/
#
# from C++ to python by Jeremy Zurcher <jeremy@asynk.ch>
#
""" OS specifications """
__all__ = ["MAX_TREELEVEL","START_ELEMENTS","INC_ELEMENTS"]
MAX_TREELEVEL = 8 # not used yet
# only used in flisthash.py tests
START_ELEMENTS = 100 #/* Start with a list of 100 elements */
INC_ELEMENTS = 50 #/* If list is full increment the size of 50 elements */
|