SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S




1
(19)
2
(28)
3
(8)
4
(15)
5
(20)
6
(23)
7
(12)
8
(11)
9
(13)
10
(4)
11
(9)
12
(34)
13
(33)
14
(24)
15
(15)
16
(12)
17
(8)
18
(5)
19
(5)
20
(6)
21
(10)
22
(9)
23
(18)
24
(10)
25
(7)
26
(13)
27
(18)
28
(29)
29
(4)
30
(5)
31
(2)

Showing 13 results of 13

From: per f. <per...@gm...> - 2009年10月26日 17:57:57
hi all,
i am trying to plot a series of arrows between points on a scatter
plot, using the following code:
import matplotlib.pyplot as plt
from matplotlib.patches import FancyArrowPatch
from numpy import *
from scipy import *
def plot_arrows(init_val, all_vals, c='k'):
 plt.figure()
 ax = plt.gca()
 prev_val = init_val
 for x, y in all_vals[1:]:
 ax = plt.gca()
 start_coord = prev_val
 plt.scatter(start_coord[0], start_coord[1], c=c)
 end_coord = (x, y)
 ax.add_patch(FancyArrowPatch(start_coord, end_coord,
 arrowstyle='->', edgecolor=c,
facecolor=c, mutation_scale=10))
 prev_val = end_coord
 plt.scatter(all_vals[-1][0], all_vals[-1][1], c=c)
points = rand(5,2)
init = [0, 0]
plot_arrows(init, points)
plt.show()
this usually works, but sometimes when i give it a set of points (not
necessarily ones generated randomly), then it gives me the error:
Library/Python/2.5/site-packages/matplotlib/bezier.pyc in
split_path_inout(path, inside, tolerence, reorder_inout)
 265
 266 if bezier_path is None:
--> 267 raise ValueError("The path does not seem to intersect
with the patch")
 268
 269 bp = zip(bezier_path[::2], bezier_path[1::2])
ValueError: The path does not seem to intersect with the patch
any idea what could be causing this? it seems like any arbitrary set
of points should work here, since you can always draw an arrow between
any two points.... not sure what is the root of this error. any help
would be really appreciated. thank you.
From: Ernest A. <ead...@gm...> - 2009年10月26日 17:51:44
Hi,
I know about sharing an axis with another subplot, but
is it possible to share the x-axis with another subplot's
y-axis (or the other way around)?
Thanks.
Ernest
From: Craig L. <cr...@gr...> - 2009年10月26日 17:25:27
Greetings,
I am using matplotlib to generate an SVG plot containing a mixture of
Annotations and Circles. I noticed that the annotation text does not appear
at exactly the correct location when outputting to SVG. The difference is
minor, but definitely present.
The following will reproduce the problem in the form of two files, an svg
and a png:
------
from matplotlib.pyplot import figure
from matplotlib.text import Annotation
from matplotlib.patches import Circle
from matplotlib.transforms import IdentityTransform
f = figure(1)
a = f.add_subplot(111)
text = Annotation('H', (0.4, 0.4), va='center', ha='center',
size='xx-large', transform=IdentityTransform())
a.add_artist(text)
a.grid(True)
f.savefig("incorrect.svg")
f.savefig("correct.png")
------
IdentityTransform() is used to workaround a bug in add_artist() (see
http://www.nabble.com/Annotation-add_artist-bug-tt19052971.html )
Further investigation reveals that this problem occurs with ps and pdf
output as well. It seems that all backend_*.py files in
/usr/share/pyshared/matplotlib/backends suffer from this problem. I have
poked around in a few files but can't see any obvious fixes.
Has anyone encountered this problem before and found a decent workaround?
Thanks,
Craig
From: Jae-Joon L. <lee...@gm...> - 2009年10月26日 17:09:00
On Sun, Oct 25, 2009 at 7:30 PM, George Nurser <gn...@go...> wrote:
> it seems a pity that
> fig.add_axes can't accept the transform directly.
While this is certainly possible, but it is a bit tricky to get it
correct due to the underlying design of the matplotlib. On the other
hand, I think it solves some problems, but not all. And the
axes_locator attribute in the current matplotlib is an attempt for a
more general solution.
For example, what you want can be achieved with something like below.
from mpl_toolkits.axes_grid.inset_locator import InsetPosition
ax= subplot(111)
ax2=axes([0, 0, 0, 0]) # The initial value is ignored in this example
ax2.set_axes_locator(InsetPosition(ax, [0.2, 0.2, 0.4, 0.4]))
Regards,
-JJ
From: Jae-Joon L. <lee...@gm...> - 2009年10月26日 16:43:40
This is a known bug. While this is fixed in the svn, this did go into
the maint. branch.
As a workaround, add the following line after line 70.
 self.legend.set_axes(self.subplot)
Regards,
-JJ
On Mon, Oct 26, 2009 at 9:44 AM, Andrea Gavana <and...@gm...> wrote:
> Hi All,
>
>  a while ago, Che posted a nice example on how to drag a legend
> with the mouse. I have upgraded to matplotlib 0.99.1 and it looks like
> the nice example is not working anymore: for the life of me I can't
> figure out what's wrong. I attach the runnable sample submitted
> originally.
>
> Any suggestion regarding what's wrong with the code?
>
> Thank you in advance.
>
> Andrea.
>
> "Imagination Is The Only Weapon In The War Against Reality."
> http://xoomer.alice.it/infinity77/
> http://thedoomedcity.blogspot.com/
>
> ------------------------------------------------------------------------------
> Come build with us! The BlackBerry(R) Developer Conference in SF, CA
> is the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay
> ahead of the curve. Join us from November 9 - 12, 2009. Register now!
> http://p.sf.net/sfu/devconference
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
>
>
From: Stan W. <sta...@nr...> - 2009年10月26日 15:39:25
> From: Werner F. Bruhin [mailto:wer...@fr...] 
> Sent: Saturday, October 24, 2009 09:03
> 
> I got it working by adding "C:\Python25" to the path 
> environment variable. Works but smells very much like a work around.
I'm glad you got things working. For what it's worth, my path contains not
only C:\Python25 but also C:\Python25\Scripts and several other
subdirectories; I don't recall adding them to the path myself, so I suspect
that python(x,y) did so during installation.
From: Stan W. <sta...@nr...> - 2009年10月26日 15:37:11
> From: Werner F. Bruhin [mailto:wer...@fr...] 
> Sent: Saturday, October 24, 2009 06:23
> 
> Installed Py 2.6.3 and I don't see the issue there, but not 
> all libraries I use are on 2.6 yet.
> 
> So, I thought lets install Python(x, y) and give this a try, 
> but I can't find a Python 2.5.x version of it - is this still 
> available?
Apparently: From the download page for python(x,y)
(http://www.pythonxy.com/download.php), in the "Site" column, the "Mirror 1"
link (http://ftp.ntua.gr/pub/devel/pythonxy/) took me to four releases of
python(x,y), of which two contain Python 2.5.something.
From: mattwarren <mat...@ho...> - 2009年10月26日 14:03:38
Hi, I'm hoping you can help. I've been reading through the matplotlib
documentation but finding it fairly confusing.
I am plotting some pie and bar charts, example code would be similar to,
def makepie(labels,slices,titlestring,outputname,FIGUREID,FIGSIZE):
	colorrange=[]
	for c in range(0,len(labels)):
		colorrange.append(( 0.5 ,0.5,0.5+(c*(0.5/len(labels)))))
	figure=plt.figure(FIGUREID, figsize=FIGSIZE)
	axes=figure.add_axes([0.1,0.1,0.8,0.8])
	chart=plt.pie(slices,labels=labels, shadow=True, colors=colorrange)
	#update formatting
	for pieslice in chart[1]: #0 is patches, 1 is text instances
		pieslice.set_fontname('Arial')
		pieslice.set_fontsize(6)
	figure.get_axes()[0].set_title(titlestring, bbox={'facecolor':'0.75',
'pad':6}, fontsize='x-small')
	plt.savefig(outputname)
The trouble is, the resulting pie isn't so pretty, and example is
http://www.nabble.com/file/p26060403/client_by_migtime.png 
I would like some general examples for updating the formatting - for example 
no matter what I have tried so far I cannot get the background to be
transparent rather than white, I dont really understand how to adjust the
positions of the labels and what options I have with the pie chart for doing
that.
I did figure out the font size and type changes, but that was more a shot in
the dark - I dont really understand the object I have programmatically or
the 'model' behind matplotlib and how it constructs an image.
I understand this is a slightly vague question, but hope someone can help!
Thanks,
Matt.
-- 
View this message in context: http://www.nabble.com/General-formatting-question-for-Pie---Bar-charts-tp26060403p26060403.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
From: Andrea G. <and...@gm...> - 2009年10月26日 13:49:59
Attachments: draggable_legend2.py
Hi All,
 a while ago, Che posted a nice example on how to drag a legend
with the mouse. I have upgraded to matplotlib 0.99.1 and it looks like
the nice example is not working anymore: for the life of me I can't
figure out what's wrong. I attach the runnable sample submitted
originally.
Any suggestion regarding what's wrong with the code?
Thank you in advance.
Andrea.
"Imagination Is The Only Weapon In The War Against Reality."
http://xoomer.alice.it/infinity77/
http://thedoomedcity.blogspot.com/
From: Michael D. <md...@st...> - 2009年10月26日 12:54:57
I'm not aware of anyone trying this, but I suspect it's related to 
differences in how DLL paths are searched on Windows vs. shared objects 
on Linux.
This sort of seems like a lower-level Python issue -- I wonder if you 
could find other projects that do this and see where matplotlib 
differs. For instance, can you import numpy this way? If not, I would 
bring this up on the Python users list and see if they have any advice.
Mike
Nick Hilton wrote:
> Hello all,
>
> I am trying to plot things from C using pylab. The configuration:
>
> Window XP 32 bits
> Python-2.6.3
> numpy-1.3.0
> matplotlib-0.99.1.
>
> I can easily do this on Linux, but the same code does not work on Windows. Here is a test program that tries to import pylab:
>
> #include <stdio.h>
>
> #include <Python.h>
>
>
>
> int main(void)
>
> {
>
> PyObject * module = NULL;
>
>
>
> Py_Initialize();
>
>
>
> module = PyImport_ImportModule("matplotlib.pylab");
>
>
>
> if(module == NULL || module == Py_None)
>
> {
>
> printf("no\n");
>
> PyErr_Print();
>
> PyErr_Clear();
>
> }
>
> else
>
> {
>
> printf("yes\n");
>
> }
>
>
>
> Py_Finalize();
>
>
>
> return 0;
>
> }
>
> The code above works fine with Python2.6 and Linux. However, on Windows it fails; here is the output:
>
> no
>
> Traceback (most recent call last):
>
> File "C:\Python26\lib\site-packages\matplotlib\pylab.py", line 206, in <module>
>
> from matplotlib import mpl # pulls in most modules
>
> File "C:\Python26\lib\site-packages\matplotlib\mpl.py", line 1, in <module>
>
> from matplotlib import artist
>
> File "C:\Python26\lib\site-packages\matplotlib\artist.py", line 5, in <module>
>
> from transforms import Bbox, IdentityTransform, TransformedBbox, TransformedPath
>
> File "C:\Python26\lib\site-packages\matplotlib\transforms.py", line 34, in <module>
>
> from matplotlib._path import affine_transform
>
> ImportError: DLL load failed: The specified module could not be found.
>
> Has anybody tried this?
>
> Thanks!
> Nick
>
>
>
> 
>
> ------------------------------------------------------------------------------
> Come build with us! The BlackBerry(R) Developer Conference in SF, CA
> is the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay 
> ahead of the curve. Join us from November 9 - 12, 2009. Register now!
> http://p.sf.net/sfu/devconference
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
> 
-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA
From: Jeff W. <js...@fa...> - 2009年10月26日 12:01:44
Jeff Whitaker wrote:
> kkondo wrote:
> 
>> Hello
>>
>> I want to get the shoreline of Malaren lake as 
>> http://en.wikipedia.org/wiki/File:La3-demis-malaren.png. But I find 
>> that the following Matplotlib-Basemap program does not draw its 
>> shoreline but its islands. Is it the flaw of GSHHS?
>>
>>
>> from mpl_toolkits.basemap import Basemap
>> import matplotlib.pyplot as plt
>> m = Basemap(width=180000,height=90000,
>> resolution='f',projection='tmerc',lon_0=17.5,lat_0=59.5)
>> plt.clf()
>> m.drawcoastlines()
>> m.fillcontinents(color='coral',lake_color='aqua')
>> m.drawmapboundary(fill_color='aqua')
>> m.drawrivers(color='b')
>> plt.show()
>>
>>
>> Sincerely,
>> Kentaro Kondo
>>
>>
>> 
> Kentaro: Apparently it's a flaw in GSHHS. I tried the online line map 
> creator at http://www.aquarius.geomar.de/cgi-bin/map-cgi.pl (which uses 
> GMT, which is the source of GSSHS) and got the same thing. It's 
> possible that it's fixed in the latest version of GSHHS (1.10) - I'll 
> take a look and let you know.
>
> -Jeff
> 
Kentaro: The problem still exists in GSHHS 1.10. I don't know what to 
suggest other than using a shapefile to plot the lakes in that region, 
if you can find one.
-Jeff
From: Jeff W. <jef...@no...> - 2009年10月26日 11:37:54
kkondo wrote:
> Dear Jeff
>
> Thank you for your reply.
>
> I have found that the "resolution='f'" in basemap crashes when drawing
> the Japanese Isles. Is it another flaw in GSHHS?
>
Kentaro: I cannot reproduce this crash. What version of the GEOS library
do you have? I am using 3.1.1.
-Jeff
P.S. cc'ing the matplotlib mailing list.
> % python japanese_isles.py
> GEOS_ERROR: TopologyException: side location conflict
> (130.468,32.5594,32.5594)
> Bus error
> % cat japanese_isles.py
> from mpl_toolkits.basemap import Basemap
> import matplotlib.pyplot as plt
> m = Basemap(llcrnrlon=121.,llcrnrlat=23.,urcrnrlon=152.,urcrnrlat=48.,
> resolution='f',projection='tmerc',lon_0=135.,lat_0=35.)
> m.drawcoastlines()
> plt.show()
> $ python
> Python 2.5.2 (r252:60911, Feb 22 2008, 07:57:53)
> [GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin
> Type "help", "copyright", "credits" or "license" for more information.
> >>> import numpy
> >>> numpy.__version__
> '1.3.0'
> >>> import mpl_toolkits.basemap
> >>> mpl_toolkits.basemap.__version__
> '0.99.4'
>
> P.S. "resolution='f'" works fine for the British Isles:
> m = Basemap(llcrnrlon=-10.5,llcrnrlat=49.5,urcrnrlon=3.5,urcrnrlat=59.5,
> resolution='f',projection='tmerc',lon_0=-4.36,lat_0=54.7)
>
> Sincerely,
> Kentaro Kondo
>
>
> On 2009年10月25日, at 22:40, Jeff Whitaker wrote:
>
>> kkondo wrote:
>>> Hello
>>>
>>> I want to get the shoreline of Malaren lake as
>>> http://en.wikipedia.org/wiki/File:La3-demis-malaren.png. But I find
>>> that the following Matplotlib-Basemap program does not draw its
>>> shoreline but its islands. Is it the flaw of GSHHS?
>>>
>>>
>>> from mpl_toolkits.basemap import Basemap
>>> import matplotlib.pyplot as plt
>>> m = Basemap(width=180000,height=90000,
>>> resolution='f',projection='tmerc',lon_0=17.5,lat_0=59.5)
>>> plt.clf()
>>> m.drawcoastlines()
>>> m.fillcontinents(color='coral',lake_color='aqua')
>>> m.drawmapboundary(fill_color='aqua')
>>> m.drawrivers(color='b')
>>> plt.show()
>>>
>>>
>>> Sincerely,
>>> Kentaro Kondo
>>>
>>>
>> Kentaro: Apparently it's a flaw in GSHHS. I tried the online line map
>> creator at http://www.aquarius.geomar.de/cgi-bin/map-cgi.pl (which
>> uses GMT, which is the source of GSSHS) and got the same thing. It's
>> possible that it's fixed in the latest version of GSHHS (1.10) - I'll
>> take a look and let you know.
>>
>> -Jeff
>
> ---------------------------------------------------------------
> 富士通(株)
> 次世代IT・ITSプロジェクト室
> インフラ協調プロジェクト
> 近藤 kk...@jp...
> (044)754-8513 fax (044)754-3292
> 〒211-8588 神奈川県川崎市中原区上小田中4-1-1
>
From: Andrey N. <asn...@gm...> - 2009年10月26日 07:14:17
<?xml version="1.0" encoding="UTF-16"?>
<DATABASE>
<EXE NAME="python.exe" FILTER="GRABMI_FILTER_PRIVACY">
 <MATCHING_FILE NAME="python.exe" SIZE="26624" CHECKSUM="0xFBDA20A7" MODULE_TYPE="WIN32" PE_CHECKSUM="0xDF4F" LINKER_VERSION="0x0" LINK_DATE="10/02/2009 18:42:09" UPTO_LINK_DATE="10/02/2009 18:42:09" />
 <MATCHING_FILE NAME="pythonw.exe" SIZE="27136" CHECKSUM="0xB158E75A" MODULE_TYPE="WIN32" PE_CHECKSUM="0xFF7F" LINKER_VERSION="0x0" LINK_DATE="10/02/2009 18:43:20" UPTO_LINK_DATE="10/02/2009 18:43:20" />
 <MATCHING_FILE NAME="Removematplotlib.exe" SIZE="196096" CHECKSUM="0x71414A47" MODULE_TYPE="WIN32" PE_CHECKSUM="0x390FC" LINKER_VERSION="0x0" LINK_DATE="01/29/2009 11:57:09" UPTO_LINK_DATE="01/29/2009 11:57:09" />
 <MATCHING_FILE NAME="Removenumpy.exe" SIZE="66048" CHECKSUM="0xA032993F" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1C7E5" LINKER_VERSION="0x0" LINK_DATE="05/31/2008 04:51:42" UPTO_LINK_DATE="05/31/2008 04:51:42" />
 <MATCHING_FILE NAME="Removescipy.exe" SIZE="66048" CHECKSUM="0xA032993F" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1C7E5" LINKER_VERSION="0x0" LINK_DATE="05/31/2008 04:51:42" UPTO_LINK_DATE="05/31/2008 04:51:42" />
 <MATCHING_FILE NAME="w9xpopen.exe" SIZE="49664" CHECKSUM="0x4E298DA0" MODULE_TYPE="WIN32" PE_CHECKSUM="0x13406" LINKER_VERSION="0x0" LINK_DATE="10/02/2009 18:40:21" UPTO_LINK_DATE="10/02/2009 18:40:21" />
 <MATCHING_FILE NAME="DLLs\sqlite3.dll" SIZE="572928" CHECKSUM="0x95EE1983" MODULE_TYPE="WIN32" PE_CHECKSUM="0x9648D" LINKER_VERSION="0x0" LINK_DATE="10/02/2009 18:42:05" UPTO_LINK_DATE="10/02/2009 18:42:05" />
 <MATCHING_FILE NAME="DLLs\tcl85.dll" SIZE="867328" CHECKSUM="0xCF388F56" BIN_FILE_VERSION="8.5.2.2" BIN_PRODUCT_VERSION="8.5.2.2" PRODUCT_VERSION="8.5.2" FILE_DESCRIPTION="Tcl DLL" COMPANY_NAME="ActiveState Corporation" PRODUCT_NAME="Tcl 8.5 for Windows" FILE_VERSION="8.5.2" ORIGINAL_FILENAME="tcl85.dll" LEGAL_COPYRIGHT="Copyright © 2001 by ActiveState Corporation, et al" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xDDCB1" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="8.5.2.2" UPTO_BIN_PRODUCT_VERSION="8.5.2.2" LINK_DATE="11/06/2008 19:29:15" UPTO_LINK_DATE="11/06/2008 19:29:15" VER_LANGUAGE="Английский (США) [0x409]" />
 <MATCHING_FILE NAME="DLLs\tclpip85.dll" SIZE="8192" CHECKSUM="0x13EA3659" MODULE_TYPE="WIN32" PE_CHECKSUM="0xBCF1" LINKER_VERSION="0x0" LINK_DATE="06/12/2008 16:15:39" UPTO_LINK_DATE="06/12/2008 16:15:39" />
 <MATCHING_FILE NAME="DLLs\tk85.dll" SIZE="1319936" CHECKSUM="0x499C647D" BIN_FILE_VERSION="8.5.2.2" BIN_PRODUCT_VERSION="8.5.2.2" PRODUCT_VERSION="8.5.2" FILE_DESCRIPTION="Tk DLL" COMPANY_NAME="ActiveState Corporation" PRODUCT_NAME="Tk 8.5 for Windows" FILE_VERSION="8.5.2" ORIGINAL_FILENAME="tk85.dll" LEGAL_COPYRIGHT="Copyright © 2001 by ActiveState Corporation, et al" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x145825" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="8.5.2.2" UPTO_BIN_PRODUCT_VERSION="8.5.2.2" LINK_DATE="11/06/2008 19:37:30" UPTO_LINK_DATE="11/06/2008 19:37:30" VER_LANGUAGE="Английский (США) [0x409]" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-6.0.exe" SIZE="61440" CHECKSUM="0xE589B8AD" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="05/31/2008 04:52:45" UPTO_LINK_DATE="05/31/2008 04:52:45" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-7.1.exe" SIZE="65536" CHECKSUM="0xA2833DFD" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="05/31/2008 04:53:42" UPTO_LINK_DATE="05/31/2008 04:53:42" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-8.0.exe" SIZE="61440" CHECKSUM="0x8527B654" MODULE_TYPE="WIN32" PE_CHECKSUM="0x1701B" LINKER_VERSION="0x0" LINK_DATE="10/04/2006 15:16:27" UPTO_LINK_DATE="10/04/2006 15:16:27" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-8_d.exe" SIZE="114688" CHECKSUM="0xBE96A210" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" LINK_DATE="10/04/2006 15:16:39" UPTO_LINK_DATE="10/04/2006 15:16:39" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-9.0-amd64.exe" SIZE="223744" CHECKSUM="0x70C19EE" MODULE_TYPE="WIN32" PE_CHECKSUM="0x41E86" LINKER_VERSION="0x0" LINK_DATE="01/29/2009 11:57:34" UPTO_LINK_DATE="01/29/2009 11:57:34" />
 <MATCHING_FILE NAME="Lib\distutils\command\wininst-9.0.exe" SIZE="196096" CHECKSUM="0x71414A47" MODULE_TYPE="WIN32" PE_CHECKSUM="0x390FC" LINKER_VERSION="0x0" LINK_DATE="01/29/2009 11:57:09" UPTO_LINK_DATE="01/29/2009 11:57:09" />
 <MATCHING_FILE NAME="tcl\dde1.3\tcldde13.dll" SIZE="18944" CHECKSUM="0x5F6F6F2F" MODULE_TYPE="WIN32" PE_CHECKSUM="0x138A6" LINKER_VERSION="0x0" LINK_DATE="06/12/2008 19:01:43" UPTO_LINK_DATE="06/12/2008 19:01:43" />
 <MATCHING_FILE NAME="tcl\reg1.2\tclreg12.dll" SIZE="18432" CHECKSUM="0xBEEC9FAD" MODULE_TYPE="WIN32" PE_CHECKSUM="0xC2A5" LINKER_VERSION="0x0" LINK_DATE="06/12/2008 19:01:42" UPTO_LINK_DATE="06/12/2008 19:01:42" />
 <MATCHING_FILE NAME="tcl\tix8.4.3\tix84.dll" SIZE="262656" CHECKSUM="0x3E0EAE66" MODULE_TYPE="WIN32" PE_CHECKSUM="0x4825B" LINKER_VERSION="0x0" LINK_DATE="02/13/2009 17:17:04" UPTO_LINK_DATE="02/13/2009 17:17:04" />
</EXE>
<EXE NAME="_path.pyd" FILTER="GRABMI_FILTER_THISFILEONLY">
 <MATCHING_FILE NAME="_path.pyd" SIZE="133120" CHECKSUM="0x2D97FD45" MODULE_TYPE="WIN32" PE_CHECKSUM="0x249D9" LINKER_VERSION="0x0" LINK_DATE="09/21/2009 17:46:53" UPTO_LINK_DATE="09/21/2009 17:46:53" />
</EXE>
<EXE NAME="kernel32.dll" FILTER="GRABMI_FILTER_THISFILEONLY">
 <MATCHING_FILE NAME="kernel32.dll" SIZE="995840" CHECKSUM="0xC3003E57" BIN_FILE_VERSION="5.1.2600.5781" BIN_PRODUCT_VERSION="5.1.2600.5781" PRODUCT_VERSION="5.1.2600.5781" FILE_DESCRIPTION="Библиотека клиента Windows NT BASE API" COMPANY_NAME="Корпорация Майкрософт" PRODUCT_NAME="Операционная система Microsoft® Windows®" FILE_VERSION="5.1.2600.5781 (xpsp_sp3_gdr.090321-1317)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Корпорация Майкрософт. Все права защищены." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF731E" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.5781" UPTO_BIN_PRODUCT_VERSION="5.1.2600.5781" LINK_DATE="03/21/2009 14:09:06" UPTO_LINK_DATE="03/21/2009 14:09:06" VER_LANGUAGE="Русский [0x419]" />
</EXE>
</DATABASE>
 ठ

Showing 13 results of 13

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /