Re: [Python-Dev] Windows builds for backported SSL module, please?
On 05/10/2007, Bill Janssen <[EMAIL PROTECTED]> wrote: > I found a bug -- setup.py wasn't detecting the difference between > 2.5.0 and 2.5.1 properly. I've updated the release to 1.5. > > > http://pypi.python.org/pypi?name=ssl&version=1.5&; I'll do Windows binaries for you. The URL you gave is broken, though, and I can't find the package on PyPI... :-( Paul. ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Removing hotshot profiler?
Fred, Search the python-3000 archives for a subject started by Neal Norwitz in late August with a subject of "what to do with profilers in the stdlib". I was the one who suggested removing hotshot (Armin's cprofile covers basically the same ground). Skip ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Windows builds for backported SSL module, please?
For some reason, it was set to be 'hidden'. Try http://pypi.python.org/pypi/ssl/1.5 Bill ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
[Python-Dev] Summary of Tracker Issues
ACTIVITY SUMMARY (09/28/07 - 10/05/07)
Tracker at http://bugs.python.org/
To view or respond to any of the issues listed below, click on the issue
number. Do NOT respond to this message.
1291 open (+18) / 11432 closed ( +3) / 12723 total (+21)
Open issues with patches: 413
Average duration of open issues: 680 days.
Median duration of open issues: 705 days.
Open Issues Breakdown
open 1286 (+18)
pending 5 ( +0)
Issues Created Or Reopened (21)
___
popen3 website documentation inconsistency 09/30/07
http://bugs.python.org/issue1220created jbronn
email.Utils.parseaddr("a(WRONG)@b") 09/30/07
http://bugs.python.org/issue1221created helmut
locale.format bug if thousand separator is space (french separat 09/30/07
http://bugs.python.org/issue1222created edlm10
httplib does not handle ssl end of file properly 10/01/07
http://bugs.python.org/issue1223created Richie
patch
SimpleHTTPServer doesn't understand // at beginning of path anym 10/01/07
http://bugs.python.org/issue1224created philfr
IDLE - Fix: pressing Ctrl+C while printing exception -> stuck10/01/07
http://bugs.python.org/issue1225created taleinat
lib/sched.py superfluous code for removal10/01/07
http://bugs.python.org/issue1226created lorph
csv docs say 'excel_tab'; code says 'excel-tab' 10/02/07
CLOSED http://bugs.python.org/issue1227created dcelzinga
3.0 tutorial/datastructures.rst patch10/02/07
http://bugs.python.org/issue1228created scav
patch
3.0 library/stdtypes.rst 10/02/07
http://bugs.python.org/issue1229created scav
Tix HList class missing method implementation for info_bbox 10/03/07
http://bugs.python.org/issue1230created ron.longo
PEPs 344 and 3134 contain incorrect hyperlinks. 10/03/07
CLOSED http://bugs.python.org/issue1231created draghuram
%f prints the wrong 6 decimal places 10/03/07
CLOSED http://bugs.python.org/issue1232created kmckiou
bsddb.dbshelve.DbShelf.append doesn't work 10/03/07
http://bugs.python.org/issue1233created polaar
semaphore errors on AIX 5.2 10/04/07
http://bugs.python.org/issue1234created sable
CGIHTTPRequestHandler.run_cgi() does not run on Windows if sys.e 10/04/07
http://bugs.python.org/issue1235created schu
subprocess is not thread-safe10/04/07
http://bugs.python.org/issue1236created [EMAIL PROTECTED]
type_new doesn't allocate space for sentinal slot10/05/07
http://bugs.python.org/issue1237created rhamphoryncus
dictobject and dictentry not used consistently in dictobject.c 10/05/07
http://bugs.python.org/issue1238created anthon
openpty does not give bidirectional pipe 10
Re: [Python-Dev] Windows builds for backported SSL module, please?
On 05/10/2007, Bill Janssen <[EMAIL PROTECTED]> wrote:
> For some reason, it was set to be 'hidden'.
>
> Try
>
> http://pypi.python.org/pypi/ssl/1.5
>
> Bill
Tiny typo in setup.py (see below). I've fixed it in my copy - it won't
affect the Windows builds, unless you want to release a new version,
when the version number will change :-)
Paul.
--- setup.py.orig 2007-10-05 00:19:04.0 +0100
+++ setup.py2007-10-05 19:01:27.359375000 +0100
@@ -160,7 +160,7 @@
ssl_incs = [os.environ.get("C_INCLUDE_DIR") or
os.path.join(gnuwin32_dir, "include")]
ssl_libs = [os.environ.get("C_LIB_DIR") or
os.path.join(gnuwin32_dir, "lib")]
libs = ['ssl', 'crypto', 'wsock32']
-if static:
+if not dynamic:
libs = libs + ['gdi32', 'gw32c', 'ole32', 'uuid']
link_args = ['-static']
else:
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Windows builds for backported SSL module, please?
On 05/10/2007, Paul Moore <[EMAIL PROTECTED]> wrote: > On 05/10/2007, Bill Janssen <[EMAIL PROTECTED]> wrote: > > For some reason, it was set to be 'hidden'. > > > > Try > > > > http://pypi.python.org/pypi/ssl/1.5 > > > > Bill > > Tiny typo in setup.py (see below). I've fixed it in my copy - it won't > affect the Windows builds, unless you want to release a new version, > when the version number will change :-) BTW, there's still an asyncore bug with Python 2.4. I can't recall if that's a known issue. It was in 1.3 (I didn't ever get to 1.4). Paul. ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] Windows builds for backported SSL module, please?
> BTW, there's still an asyncore bug with Python 2.4. I can't recall if > that's a known issue. It was in 1.3 (I didn't ever get to 1.4). Hmmm, I just build Python 2.4.4 and tried it (on a Mac), and it seems to work fine. Must be a Windows issue, somehow. Any ideas? Bill ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
