pywin32-checkins Mailing List for Python for Windows Extensions (Page 159)
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(1) |
Jun
(6) |
Jul
(50) |
Aug
(11) |
Sep
(24) |
Oct
(184) |
Nov
(118) |
Dec
(22) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(31) |
Feb
(25) |
Mar
(34) |
Apr
(105) |
May
(49) |
Jun
(38) |
Jul
(39) |
Aug
(7) |
Sep
(98) |
Oct
(79) |
Nov
(20) |
Dec
(17) |
2005 |
Jan
(66) |
Feb
(32) |
Mar
(43) |
Apr
(30) |
May
(58) |
Jun
(30) |
Jul
(16) |
Aug
(4) |
Sep
(21) |
Oct
(42) |
Nov
(11) |
Dec
(14) |
2006 |
Jan
(42) |
Feb
(30) |
Mar
(22) |
Apr
(1) |
May
(9) |
Jun
(15) |
Jul
(20) |
Aug
(9) |
Sep
(8) |
Oct
(1) |
Nov
(9) |
Dec
(43) |
2007 |
Jan
(52) |
Feb
(45) |
Mar
(20) |
Apr
(12) |
May
(59) |
Jun
(39) |
Jul
(35) |
Aug
(31) |
Sep
(17) |
Oct
(20) |
Nov
(4) |
Dec
(4) |
2008 |
Jan
(28) |
Feb
(111) |
Mar
(4) |
Apr
(27) |
May
(40) |
Jun
(27) |
Jul
(32) |
Aug
(94) |
Sep
(87) |
Oct
(153) |
Nov
(336) |
Dec
(331) |
2009 |
Jan
(298) |
Feb
(127) |
Mar
(20) |
Apr
(8) |
May
|
Jun
(10) |
Jul
(6) |
Aug
|
Sep
(2) |
Oct
(2) |
Nov
|
Dec
(1) |
2010 |
Jan
(7) |
Feb
(1) |
Mar
|
Apr
|
May
(15) |
Jun
(4) |
Jul
(3) |
Aug
(28) |
Sep
(1) |
Oct
(19) |
Nov
(16) |
Dec
(6) |
2011 |
Jan
(2) |
Feb
(18) |
Mar
(17) |
Apr
(12) |
May
(5) |
Jun
(11) |
Jul
(7) |
Aug
(2) |
Sep
(2) |
Oct
(4) |
Nov
(4) |
Dec
|
2012 |
Jan
(6) |
Feb
(2) |
Mar
|
Apr
(8) |
May
(4) |
Jun
(3) |
Jul
(13) |
Aug
(27) |
Sep
(8) |
Oct
(9) |
Nov
(3) |
Dec
(2) |
2013 |
Jan
|
Feb
(1) |
Mar
(5) |
Apr
(10) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(9) |
2014 |
Jan
(2) |
Feb
(4) |
Mar
(4) |
Apr
(1) |
May
(4) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(1) |
2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
(6) |
May
(2) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
(2) |
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
From: <mha...@us...> - 2003-06-07 02:04:31
|
Update of /cvsroot/pywin32/pywin32/win32/Lib In directory sc8-pr-cvs1:/tmp/cvs-serv15503 Modified Files: win32con.py Log Message: Thread priority constants. Index: win32con.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/Lib/win32con.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** win32con.py 11 Jul 2002 00:21:55 -0000 1.2 --- win32con.py 7 Jun 2003 02:04:28 -0000 1.3 *************** *** 4163,4166 **** --- 4163,4177 ---- PROFILE_KERNEL = 0x20000000 PROFILE_SERVER = 0x40000000 + THREAD_BASE_PRIORITY_LOWRT = 15 + THREAD_BASE_PRIORITY_MAX = 2 + THREAD_BASE_PRIORITY_MIN = -2 + THREAD_BASE_PRIORITY_IDLE = -15 + THREAD_PRIORITY_LOWEST = THREAD_BASE_PRIORITY_MIN + THREAD_PRIORITY_BELOW_NORMAL = THREAD_PRIORITY_LOWEST+1 + THREAD_PRIORITY_HIGHEST = THREAD_BASE_PRIORITY_MAX + THREAD_PRIORITY_ABOVE_NORMAL = THREAD_PRIORITY_HIGHEST-1 + THREAD_PRIORITY_ERROR_RETURN = MAXLONG + THREAD_PRIORITY_TIME_CRITICAL = THREAD_BASE_PRIORITY_LOWRT + THREAD_PRIORITY_IDLE = THREAD_BASE_PRIORITY_IDLE THREAD_PRIORITY_NORMAL = 0 EXCEPTION_DEBUG_EVENT = 1 |
From: <mha...@us...> - 2003-06-01 12:51:55
|
Update of /cvsroot/pywin32/pywin32/com/win32com/server In directory sc8-pr-cvs1:/tmp/cvs-serv14018 Modified Files: policy.py Log Message: Don't mask exceptions in the object registration code. Fixes 740417: Summary: Potential error concealment in COM server initialization Index: policy.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/server/policy.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** policy.py 18 Mar 2003 07:12:42 -0000 1.13 --- policy.py 1 Jun 2003 12:51:51 -0000 1.14 *************** *** 198,206 **** classSpec = win32api.RegQueryValue(win32con.HKEY_CLASSES_ROOT, regSpec % clsid) - myob = call_func(classSpec) - self._wrap_(myob) - return pythoncom.WrapObject(self, reqIID) except win32api.error: raise error, "The object is not correctly registered - %s key can not be read" % (regSpec % clsid) def _wrap_(self, object): --- 198,206 ---- classSpec = win32api.RegQueryValue(win32con.HKEY_CLASSES_ROOT, regSpec % clsid) except win32api.error: raise error, "The object is not correctly registered - %s key can not be read" % (regSpec % clsid) + myob = call_func(classSpec) + self._wrap_(myob) + return pythoncom.WrapObject(self, reqIID) def _wrap_(self, object): |
From: <th...@us...> - 2003-05-16 18:46:56
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1:/tmp/cvs-serv8798 Modified Files: setup_win32all_core.py Log Message: Fix a small typo (and check if the checkin messages are sent). Index: setup_win32all_core.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup_win32all_core.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** setup_win32all_core.py 10 Jan 2003 02:54:32 -0000 1.2 --- setup_win32all_core.py 16 May 2003 18:46:46 -0000 1.3 *************** *** 2,6 **** # pywintypes and pythoncom. # ! # Thomas Heller, startet in 2000 or so. from distutils.core import setup, Extension, Command --- 2,6 ---- # pywintypes and pythoncom. # ! # Thomas Heller, started in 2000 or so. from distutils.core import setup, Extension, Command |
From: Thomas H. <th...@py...> - 2003-04-22 14:03:58
|
"Mark Hammond" <mha...@sk...> writes: > I'm not sure why (I can't even find the source-forge option again!) but > checkin mails don't appear to be working yet :( IIRC, there's no such option. You have to install syncmail in CVSROOT, and use it in CVSROOT/loginfo. Thomas |
From: Mark H. <mha...@sk...> - 2003-04-21 10:44:34
|
I'm not sure why (I can't even find the source-forge option again!) but checkin mails don't appear to be working yet :( Mark. |