python3: update to 3.3.5.
This commit is contained in:
parent
563b6d8375
commit
8cd483c363
2 changed files with 3 additions and 23 deletions
|
@ -1,20 +0,0 @@
|
|||
--- Modules/posixmodule.c.orig 2014-02-11 12:02:02.194327264 +0100
|
||||
+++ Modules/posixmodule.c 2014-02-11 12:03:09.665777135 +0100
|
||||
@@ -7846,7 +7846,7 @@ PyDoc_STRVAR(posix_close__doc__,
|
||||
Close a file descriptor (for low level IO).");
|
||||
|
||||
static PyObject *
|
||||
-posix_close(PyObject *self, PyObject *args)
|
||||
+posix_closex(PyObject *self, PyObject *args)
|
||||
{
|
||||
int fd, res;
|
||||
if (!PyArg_ParseTuple(args, "i:close", &fd))
|
||||
@@ -11252,7 +11252,7 @@ static PyMethodDef posix_methods[] = {
|
||||
{"open", (PyCFunction)posix_open,\
|
||||
METH_VARARGS | METH_KEYWORDS,
|
||||
posix_open__doc__},
|
||||
- {"close", posix_close, METH_VARARGS, posix_close__doc__},
|
||||
+ {"close", posix_closex, METH_VARARGS, posix_close__doc__},
|
||||
{"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
|
||||
{"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__},
|
||||
{"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
|
|
@ -1,14 +1,14 @@
|
|||
# Template build file for 'python3'.
|
||||
pkgname=python3
|
||||
version=3.3.4
|
||||
revision=2
|
||||
version=3.3.5
|
||||
revision=1
|
||||
wrksrc="Python-${version}"
|
||||
short_desc="Interpreted, interactive, object-oriented programming language (3.x series)"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
homepage="http://www.python.org"
|
||||
license="PSF"
|
||||
distfiles="http://www.python.org/ftp/python/$version/Python-$version.tar.xz"
|
||||
checksum=c6cc126d91c04e0348882cfbd36d7a844d4e50acc37a3f6a64d67764e3995689
|
||||
checksum=abe99b484434503d8b23be0f243ec27139e743a4798cd71c1dce3cf40e63b6e5
|
||||
|
||||
makedepends="libffi-devel readline-devel>=6.3 gdbm-devel openssl-devel
|
||||
expat-devel sqlite-devel bzip2-devel zlib-devel liblzma-devel"
|
||||
|
|
Loading…
Reference in a new issue