summaryrefslogtreecommitdiff
path: root/source3/python/py_tdbpack.c
AgeCommit message (Collapse)AuthorFilesLines
2002-12-12CR1333: Fix memory leak when unpacking some structures.Martin Pool1-10/+15
* (pytdbunpack_item): PyList_Append creates an additional reference to the appended object. Therefore, release the initial reference after it's added to the list. (This used to be commit 1e63dc101a5085a46b9632ba657e5d5cd7505751)
2002-12-11Some more tweaking for compilation of py_tdbpack.Tim Potter1-1/+1
(This used to be commit 89be695b2997e97dfc40afd17bb61b59b85634e4)
2002-12-04FUNCTION_MACRO change broke the Python modules.Tim Potter1-7/+16
Also fix up string pasting (I thought this should only be a warning?) (This used to be commit 739285ff694e9ffd317ad47aec373e2007c20f45)
2002-12-03use FILE_MACRO instead of __FILE__Herb Lewis1-6/+6
use FUNCTION_MACRO instead of __FUNCTION_ (This used to be commit 243763d6eb107ab2444d81025232c8fe795baaf1)
2002-11-27Fix comment - 850 -> iso8859-1Jeremy Allison1-1/+1
Jeremy. (This used to be commit 6639693746ba4c8f6622325ac143f8b1b3bd7538)
2002-11-27Remove use of 'F' - make 'f' and 'p' do unix (iso8859-1) encoding.Jeremy Allison1-10/+0
Jeremy. (This used to be commit e88bbec2a06bd92b8cfa33efdf166c4fa72cb656)
2002-11-22Add support for new 'F' format, which is a string in the defaultMartin Pool1-34/+64
codepage. (This used to be commit ff1244c457d0525343bcc7e89a899d8c7d14b8b6)
2002-11-12Rename unpack_* functions to be consistentMartin Pool1-15/+16
Decode CP850 strings when unpacking Add variable giving default encoding name (This used to be commit 8cbaea2afa6faca80eced70d625359165afaa10c)
2002-11-12Rename pytdbpack_unpack -> pytdbunpackMartin Pool1-7/+7
(This used to be commit e62baf3a76e0e4f642e542812868db614632de00)
2002-11-12Just reorder functions to put related ones togetherMartin Pool1-40/+38
(This used to be commit 7863c948b73785e49d04227e87d8b4b47fd61f58)
2002-11-12Remove dead code for packing buffers which has now been reimplemented.Martin Pool1-94/+0
(This used to be commit 001779dffd18e1f6a83496c94ead185d4bb42204)
2002-11-12Remove dead code for packing buffers which has now been reimplemented.Martin Pool1-36/+0
(This used to be commit 62ca27d140d55cbb271b97624023540ae7c18882)
2002-11-09Rewrite all the packing stuff so that it converts 'f' strings to CP850Martin Pool1-174/+274
on encoding. (Tough luck if your Samba codepage is not 850.) It's much cleaner and possibly more efficient now too: just build one big list of strings, then zip it up at the end. Still need to do this for unpacking. (This used to be commit 2480d385db0527b71cc5cd23c4fab4655df84485)
2002-11-06pytdbpack_unpack: Clean up, and correct the handling of '$'.Martin Pool1-20/+18
(This used to be commit dd73568f97ad51c93f096001058fd31fa14e88ae)
2002-11-05pytdbpack_pack_data: Allow first argument to be any kind of Number,Martin Pool1-3/+9
not just an Integer. Coerce appropriately. (This used to be commit 248067931a2a8eeee86ea343bddf96d2bd727dbf)
2002-11-05pytdbpack_pack_data: If the first argument to a 'B' code is not anMartin Pool1-1/+3
Integer, raise an error rather than just returning Null, which breaks the interpreter. (This used to be commit db67c5f7e53b231fe217a29a15888e8895ce2229)
2002-11-05pytdbpack_pack_data: Oops, since B is separately encoded as buffer andMartin Pool1-5/+8
length we need separate counters traversing the format and value sequences to pack them. (This used to be commit 49a0ba46e6693bb819440d4ab40045afc4a7ae17)
2002-11-05pytdbpack_unpack: Handle unpacking Buffers into (LEN, DATA): form listMartin Pool1-21/+45
by appending, rather than preallocating. (This used to be commit d72b144e03b9a9cb3d676527ddc5b2d0e1ef42f8)
2002-11-04pytdbpack_pack_data: Allow 'd' and 'w' formats to take either IntegerMartin Pool1-2/+20
or Long arguments. (This used to be commit 2085595565b99295d04a6663aad1ccac5bc1b657)
2002-11-04Make sure uint32 unpacking is unsigned, and generates a Python long soMartin Pool1-10/+10
that it can represent all the unsigned values (This used to be commit 2593e1588355643bb76a9b8869573fe38fd3bc3e)
2002-11-04pytdbpack_calc_reqd_len: Correct calculation of packed length ofMartin Pool1-5/+8
string types (This used to be commit 30525aee33237f5b17e1067a96d09b7ee0a516a6)
2002-11-04Change to representing buffers ('B') as (LEN, STRING) in Python,Martin Pool1-130/+112
rather than as just a string. Makes the code more messy, but needed for compatibility with existing PSA Python code which seems to be too knotty to separate out. (This used to be commit 20d88a7d1e2a6d2daca29c5ffff3781197a97b57)
2002-11-04pytdbpack_calc_reqd_len: It's no longer an error to supply more dataMartin Pool1-8/+2
values than are consumed. (This used to be commit 0c1cfe559877d51090409d67f983a82bbbbaa7e2)
2002-11-04DocMartin Pool1-2/+5
(This used to be commit 21e41866425c6f8bf04b08b3edd5bf70caf56e32)
2002-11-04pytdbpack_calc_reqd_len: Make exception be thrown correctly when aMartin Pool1-2/+5
non-string is used with a string format code. (It was being generated but not thrown.) Also call checked versions of some functions rather than FAST_* versions. (This used to be commit 1b681bd524764deaef657ef41c39d037ac7dcc7b)
2002-10-21Give better error messages for TypeError, which will arise if e.g. youMartin Pool1-10/+24
try to pack an Int using a string tdbpack format. (This used to be commit 6139ab3cbca3fc2969d1e578b38394b1f6aeb9c3)
2002-09-09Import my code to do reasonably fast tdbpack/unpack from PythonMartin Pool1-0/+662
(This used to be commit 1f7ed8bb863fdacd0b9f3bc2e1e5d72ec7051feb)