Skip to content

Commit

Permalink
committed 0.3.5-2 (rc2) source
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyu81 committed Oct 31, 2012
1 parent 8a175e0 commit 55f5e8b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions pysandbox/CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[2012/10/15] LIU Yu, <pineapple.liu@gmail.com>
* in sandbox/module.c fixed clear order of objects
* in setup.{py,cfg} updated version to 0.3.5-2

[2012/09/04] LIU Yu, <pineapple.liu@gmail.com>
* in sandbox/module.c fixed early unlock in Sandbox_traverse()

Expand All @@ -9,6 +13,7 @@
* in sandbox/module.c applied new LOCK/UNLOCK macros for concurrency control
* in sandbox/module.c changed status and result attributes of Sandbox from
instance members to getter methods
* in setup.{py,cfg} updated version to 0.3.5-1

[2012/07/19] LIU Yu, <pineapple.liu@gmail.com>
* in sandbox/module.c added new attributes owner and group to Sandbox
Expand Down
8 changes: 4 additions & 4 deletions pysandbox/packages/sandbox/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -846,14 +846,14 @@ Sandbox_clear(Sandbox * self)
FUNC_BEGIN("%p", self);
assert(self);

Py_CLEAR(Sandbox_GET_IO(self).i);
Py_CLEAR(Sandbox_GET_IO(self).o);
Py_CLEAR(Sandbox_GET_IO(self).e);

LOCK(&Sandbox_GET_SBOX(self), EX);
Sandbox_CLEAR_POLICY(self);
UNLOCK(&Sandbox_GET_SBOX(self));

Py_CLEAR(Sandbox_GET_IO(self).i);
Py_CLEAR(Sandbox_GET_IO(self).o);
Py_CLEAR(Sandbox_GET_IO(self).e);

FUNC_RET("%d", 0);
}

Expand Down
2 changes: 1 addition & 1 deletion pysandbox/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bdist_rpm]
release = 1
release = 2
vendor = OpenJudge Alliance, http://openjudge.net
packager = LIU Yu <pineapple.liu@gmail.com>
doc_files = README COPYING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion pysandbox/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

NAME = 'pysandbox'
VERSION = "0.3.5"
RELEASE = "1"
RELEASE = "2"
AUTHOR = "LIU Yu"
AUTHOR_EMAIL = "pineapple.liu@gmail.com"
MAINTAINER = AUTHOR
Expand Down

0 comments on commit 55f5e8b

Please sign in to comment.