From bde17a0267d4f646cf83858ff44d2df01dd303b8 Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Tue, 17 Jun 2008 14:16:41 +0000 Subject: [PATCH] expose all methods to php --- php/methods.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/methods.py b/php/methods.py index ca34773..3e20a31 100755 --- a/php/methods.py +++ b/php/methods.py @@ -43,8 +43,8 @@ def php_cast(value): # Class functions api = PLCAPI(None) -api.methods.sort() -for method in api.methods: +api.all_methods.sort() +for method in api.all_methods: # Skip system. methods if "system." in method: continue -- 2.45.2