[issue1] Test issue

2007-08-06 Thread user

New submission from user:

Hi there folks. This is just a test issue to make sure the e-mail
sending from the tracker that hopefully will be in production RSN
works as expected.

--
components: Build
messages: 17863
nosy: user
severity: normal
status: open
title: Test issue
type: rfe
versions: Python 2.3


Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1>

___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1767787] MSVC++8 x86 tkinter build patch for trunk

2007-08-07 Thread user

Changes by user:


_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1767787>
_
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1000] test

2007-08-22 Thread user

Changes by user:


--
type:  -> rfe

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1000>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1000] test

2007-08-22 Thread user

New submission from user:

test patch

--
files: python.diff
messages: 55112
nosy: user
severity: normal
status: open
title: test

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1000>
__Index: Modules/_ssl.c
===
--- Modules/_ssl.c  (revision 51574)
+++ Modules/_ssl.c  (working copy)
@@ -317,7 +317,7 @@
 
if (!PyArg_ParseTuple(args, "O!|zz:ssl",
  PySocketModule.Sock_Type,
- (PyObject*)&Sock,
+ &Sock,
  &key_file, &cert_file))
return NULL;
 
Index: Modules/_ctypes/callproc.c
===
--- Modules/_ctypes/callproc.c  (revision 51574)
+++ Modules/_ctypes/callproc.c  (working copy)
@@ -1230,11 +1230,11 @@
 
 static PyObject *py_dl_close(PyObject *self, PyObject *args)
 {
-   void * handle;
+   int handle;
 
if (!PyArg_ParseTuple(args, "i:dlclose", &handle))
return NULL;
-   if (dlclose(handle)) {
+   if (dlclose((void*)handle)) {
PyErr_SetString(PyExc_OSError,
   ctypes_dlerror());
return NULL;
@@ -1246,12 +1246,12 @@
 static PyObject *py_dl_sym(PyObject *self, PyObject *args)
 {
char *name;
-   void *handle;
+   int handle;
void *ptr;
 
if (!PyArg_ParseTuple(args, "is:dlsym", &handle, &name))
return NULL;
-   ptr = ctypes_dlsym(handle, name);
+   ptr = ctypes_dlsym((void*)handle, name);
if (!ptr) {
PyErr_SetString(PyExc_OSError,
   ctypes_dlerror());
@@ -1269,7 +1269,7 @@
 static PyObject *
 call_function(PyObject *self, PyObject *args)
 {
-   PPROC func;
+   int func;
PyObject *arguments;
PyObject *result;
 
@@ -1279,7 +1279,7 @@
  &PyTuple_Type, &arguments))
return NULL;
 
-   result =  _CallProc(func,
+   result =  _CallProc((PPROC)func,
arguments,
 #ifdef MS_WIN32
NULL,
@@ -1300,7 +1300,7 @@
 static PyObject *
 call_cdeclfunction(PyObject *self, PyObject *args)
 {
-   PPROC func;
+   int func;
PyObject *arguments;
PyObject *result;
 
@@ -1310,7 +1310,7 @@
  &PyTuple_Type, &arguments))
return NULL;
 
-   result =  _CallProc(func,
+   result =  _CallProc((PPROC)func,
arguments,
 #ifdef MS_WIN32
NULL,
@@ -1493,7 +1493,7 @@
 #else
  "On:resize",
 #endif
- (PyObject *)&obj, &size))
+ &obj, &size))
return NULL;
 
dict = PyObject_stgdict((PyObject *)obj);
Index: Modules/dbmmodule.c
===
--- Modules/dbmmodule.c (revision 51574)
+++ Modules/dbmmodule.c (working copy)
@@ -208,11 +208,13 @@
 static PyObject *
 dbm_has_key(register dbmobject *dp, PyObject *args)
 {
+   char *tmp_ptr;
datum key, val;
int tmp_size;

-   if (!PyArg_ParseTuple(args, "s#:has_key", &key.dptr, &tmp_size))
+   if (!PyArg_ParseTuple(args, "s#:has_key", &tmp_ptr, &tmp_size))
return NULL;
+   key.dptr = tmp_ptr;
key.dsize = tmp_size;
 check_dbmobject_open(dp);
val = dbm_fetch(dp->di_dbm, key);
@@ -224,11 +226,13 @@
 {
datum key, val;
PyObject *defvalue = Py_None;
+   char *tmp_ptr;
int tmp_size;
 
if (!PyArg_ParseTuple(args, "s#|O:get",
-  &key.dptr, &tmp_size, &defvalue))
+  &tmp_ptr, &tmp_size, &defvalue))
return NULL;
+   key.dptr = tmp_ptr;
key.dsize = tmp_size;
 check_dbmobject_open(dp);
val = dbm_fetch(dp->di_dbm, key);
@@ -245,11 +249,13 @@
 {
datum key, val;
PyObject *defvalue = NULL;
+   char *tmp_ptr;
int tmp_size;
 
if (!PyArg_ParseTuple(args, "s#|S:setdefault",
-  &key.dptr, &tmp_size, &defvalue))
+  &tmp_ptr, &tmp_size, &defvalue))
return NULL;
+   key.dptr = tmp_ptr;
key.dsize = tmp_size;
 check_dbmobject_open(dp);
val = dbm_fetch(dp->di_dbm, key);
Index: Modules/audioop.c
===
--- Modules/audioop.c   (

[issue1001] Test 2

2007-08-22 Thread user

Changes by user:


--
severity: normal
status: open
title: Test 2

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1001>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue45906] Python github installatiomn issue

2021-11-26 Thread Some User


New submission from Some User :

Whenever i try to setup python3.9 configure via github, It raises a configure 
error.
``
$ ./configure
checking build system type... type
checking host system type... type
checking for python3.9... no
checking for python3... no
checking for python... no
checking for --enable-universalsdk... no
checking for --with-universal-archs... no
checking MACHDEP... "linux"
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... configure: error: in 
`/path/folder_which_contains_cpython_folder/cpython-3.9':
configure: error: cannot run C compiled programs.
If you meant to cross compile, use `--host'.
See `config.log' for more details
```

--
components: Installation
messages: 407089
nosy: mazen001.ahmed001
priority: normal
severity: normal
status: open
title: Python github installatiomn issue
type: compile error
versions: Python 3.9

___
Python tracker 
<https://bugs.python.org/issue45906>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue45906] Python github installation issue

2021-11-26 Thread Some User


Change by Some User :


--
title: Python github installatiomn issue -> Python github installation issue

___
Python tracker 
<https://bugs.python.org/issue45906>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2771] Test issue

2019-09-11 Thread ZW Test User


Change by ZW Test User :


--
components: +Tests -Documentation
nosy: +zach.ware
type: enhancement -> behavior
versions:  -Python 3.8

___
Python tracker 
<https://bugs.python.org/issue2771>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2771] Test issue

2013-04-09 Thread Test User Deily

Test User Deily added the comment:

testing

--
nosy: +testusernad -ezio.melotti, mark.dickinson

___
Python tracker 
<http://bugs.python.org/issue2771>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com